Changeset 3253:26daff844f0a for attach.c
Legend:
- Unmodified
- Added
- Removed
-
attach.c
r3179 r3253 113 113 if (safe_symlink (a->filename, newfile) == -1) 114 114 { 115 if ( !mutt_yesorno (_("Can't match nametemplate, continue?"), 1))115 if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) != M_YES) 116 116 goto bailout; 117 117 } … … 240 240 if (safe_symlink (a->filename, newfile) == -1) 241 241 { 242 if ( !mutt_yesorno (_("Can't match nametemplate, continue?"), 1))242 if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) != M_YES) 243 243 goto bailout; 244 244 } … … 469 469 if (safe_symlink (a->filename, tempfile) == -1) 470 470 { 471 if (mutt_yesorno (_("Can't match nametemplate, continue?"), 1) == M_YES)471 if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) == M_YES) 472 472 strfcpy (tempfile, a->filename, sizeof (tempfile)); 473 473 else … … 959 959 if (safe_symlink(a->filename, newfile) == -1) 960 960 { 961 if (mutt_yesorno (_("Can't match nametemplate, continue?"), 1) != M_YES)961 if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) != M_YES) 962 962 { 963 963 rfc1524_free_entry (&entry);
