if (a->stamp >= st.st_mtime)
mutt_stamp_attachment (a);
- }
- else
+ } else {
mutt_perror(fpin ? tempfile : a->filename);
+ }
m_fclose(&fpin);
m_fclose(&fpout);
if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
!= M_YES)
goto bailout;
- }
- else
+ } else {
unlink_newfile = 1;
- }
- else
+ }
+ } else {
m_strcpy(newfile, sizeof(newfile), a->filename);
+ }
if (rfc1524_expand_command (a, newfile, type,
command, sizeof (command))) {
/* For now, editing requires a file, no piping */
mutt_error _("Mailcap compose entry requires %%s");
- }
- else {
+ } else {
int r;
mutt_endwin (NULL);
}
}
}
- }
- else {
+ } else {
rfc1524_entry_delete(&entry);
mutt_message (_("No mailcap compose entry for %s, creating empty file."),
type);
if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
!= M_YES)
goto bailout;
- }
- else
+ } else {
unlink_newfile = 1;
- }
- else
+ }
+ } else {
m_strcpy(newfile, sizeof(newfile), a->filename);
+ }
if (rfc1524_expand_command (a, newfile, type,
command, sizeof (command))) {
/* For now, editing requires a file, no piping */
mutt_error _("Mailcap Edit entry requires %%s");
goto bailout;
- }
- else {
+ } else {
mutt_endwin (NULL);
if (mutt_system (command) == -1) {
mutt_error (_("Error running \"%s\"!"), command);
else if (a->type == TYPETEXT) {
/* On text, default to editor */
mutt_edit_file (NONULL (Editor), a->filename);
- }
- else {
+ } else {
rfc1524_entry_delete(&entry);
mutt_error (_("No mailcap edit entry for %s"), type);
return 0;
if (*(q + 1) == '*') {
if (ascii_strncasecmp (buf, p, q - p) == 0)
return (1);
- }
- else {
+ } else {
if (ascii_strcasecmp (buf, p) == 0)
return (1);
}
- }
- else {
+ } else {
lng = m_strlen(p);
if (buf[lng] == '/' && m_strncasecmp(buf, p, lng) == 0)
return (1);
int i;
if (!type)
- snprintf (_type, sizeof (_type), "%s/%s", TYPE (b), b->subtype);
+ snprintf(_type, sizeof(_type), "%s/%s", TYPE(b), b->subtype);
else
m_strcpy(_type, sizeof(_type), type);