X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.c;h=725fa9690c5bfc3fb23658ec8062fdb4d779ea19;hp=b14ee86748a0ed13ba2d3baa4339af8cc9877483;hb=814a01519c9605d479201b99eb16c97b0ad8635d;hpb=ee1d4d931ca3ebec494694b74a1868a7a2e631e3 diff --git a/attach.c b/attach.c index b14ee86..725fa96 100644 --- a/attach.c +++ b/attach.c @@ -26,6 +26,7 @@ #include "lib/mem.h" #include "lib/intl.h" #include "lib/str.h" +#include "lib/debug.h" #include #include @@ -66,7 +67,7 @@ int mutt_get_tmp_attachment (BODY * a) mutt_stamp_attachment (a); } else - mutt_perror (fpin ? tempfile : a->filename); + mutt_perror(fpin ? tempfile : a->filename); if (fpin) fclose (fpin); @@ -97,8 +98,7 @@ int mutt_compose_attachment (BODY * a) strfcpy (command, entry->composecommand, sizeof (command)); if (rfc1524_expand_filename (entry->nametemplate, a->filename, newfile, sizeof (newfile))) { - dprint (1, (debugfile, "oldfile: %s\t newfile: %s\n", - a->filename, newfile)); + debug_print (1, ("oldfile: %s\t newfile: %s\n", a->filename, newfile)); if (safe_symlink (a->filename, newfile) == -1) { if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) != M_YES) @@ -128,7 +128,7 @@ int mutt_compose_attachment (BODY * a) char tempfile[_POSIX_PATH_MAX]; if ((fp = safe_fopen (a->filename, "r")) == NULL) { - mutt_perror _("Failure to open file to parse headers."); + mutt_perror (_("Failure to open file to parse headers.")); goto bailout; } @@ -156,7 +156,7 @@ int mutt_compose_attachment (BODY * a) fseek (fp, b->offset, 0); mutt_mktemp (tempfile); if ((tfp = safe_fopen (tempfile, "w")) == NULL) { - mutt_perror _("Failure to open file to strip headers."); + mutt_perror (_("Failure to open file to strip headers.")); goto bailout; } @@ -165,7 +165,7 @@ int mutt_compose_attachment (BODY * a) fclose (tfp); mutt_unlink (a->filename); if (mutt_rename_file (tempfile, a->filename) != 0) { - mutt_perror _("Failure to rename file."); + mutt_perror (_("Failure to rename file.")); goto bailout; } @@ -219,8 +219,7 @@ int mutt_edit_attachment (BODY * a) strfcpy (command, entry->editcommand, sizeof (command)); if (rfc1524_expand_filename (entry->nametemplate, a->filename, newfile, sizeof (newfile))) { - dprint (1, (debugfile, "oldfile: %s\t newfile: %s\n", - a->filename, newfile)); + debug_print (1, ("oldfile: %s\t newfile: %s\n", a->filename, newfile)); if (safe_symlink (a->filename, newfile) == -1) { if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES) != M_YES) @@ -327,8 +326,7 @@ void mutt_check_lookup_list (BODY * b, char *type, int len) n == TYPEMULTIPART ? "multipart" : n == TYPETEXT ? "text" : n == TYPEVIDEO ? "video" : "other", tmp.subtype); - dprint (1, (debugfile, "mutt_check_lookup_list: \"%s\" -> %s\n", - b->filename, type)); + debug_print (1, ("\"%s\" -> %s\n", b->filename, type)); } if (tmp.subtype) FREE (&tmp.subtype); @@ -623,7 +621,7 @@ int mutt_pipe_attachment (FILE * fp, BODY * b, const char *path, thepid = mutt_create_filter (path, &s.fpout, NULL, NULL); if (thepid < 0) { - mutt_perror _("Can't create filter"); + mutt_perror (_("Can't create filter")); goto bail; } @@ -652,7 +650,7 @@ int mutt_pipe_attachment (FILE * fp, BODY * b, const char *path, thepid = mutt_create_filter (path, &ofp, NULL, NULL); if (thepid < 0) { - mutt_perror _("Can't create filter"); + mutt_perror (_("Can't create filter")); safe_fclose (&ifp); goto bail; @@ -891,7 +889,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) rfc1524_entry *entry; int piped = FALSE; - dprint (2, (debugfile, "Using mailcap...\n")); + debug_print (2, ("Using mailcap...\n")); entry = rfc1524_new_entry (); rfc1524_mailcap_lookup (a, type, entry, M_PRINT); @@ -930,7 +928,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) } if ((thepid = mutt_create_filter (command, &fpout, NULL, NULL)) < 0) { - mutt_perror _("Can't create filter"); + mutt_perror (_("Can't create filter")); rfc1524_free_entry (&entry); safe_fclose (&ifp); @@ -971,8 +969,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) mutt_mktemp (newfile); if (mutt_decode_save_attachment (fp, a, newfile, M_PRINTING, 0) == 0) { - dprint (2, - (debugfile, "successfully decoded %s type attachment to %s\n", + debug_print (2, ("successfully decoded %s type attachment to %s\n", type, newfile)); if ((ifp = fopen (newfile, "r")) == NULL) { @@ -980,17 +977,17 @@ int mutt_print_attachment (FILE * fp, BODY * a) goto bail0; } - dprint (2, (debugfile, "successfully opened %s read-only\n", newfile)); + debug_print (2, ("successfully opened %s read-only\n", newfile)); mutt_endwin (NULL); if ((thepid = mutt_create_filter (NONULL (PrintCmd), &fpout, NULL, NULL)) < 0) { - mutt_perror _("Can't create filter"); + mutt_perror (_("Can't create filter")); goto bail0; } - dprint (2, (debugfile, "Filter created.\n")); + debug_print (2, ("Filter created.\n")); mutt_copy_stream (ifp, fpout);