X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.c;h=00df99c9a332944d9edd2e70ca5a6ed50acbc189;hp=afae486fc6ae192e9998e74a8947108d48c851ee;hb=6920eb5798f2d9f25e5ea1af2ba86122cf408bd1;hpb=0ab517261694b001d2eb17f06f167a4cdd2c7c07 diff --git a/attach.c b/attach.c index afae486..00df99c 100644 --- a/attach.c +++ b/attach.c @@ -12,7 +12,7 @@ #include #include -#include +#include #include #include @@ -138,7 +138,7 @@ int mutt_compose_attachment (BODY * a) /* Remove headers by copying out data to another file, then * copying the file back */ fseeko (fp, b->offset, 0); - tfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(MCore.tmpdir), NULL); + tfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(mod_core.tmpdir), NULL); if (!tfp) { mutt_perror (_("Failure to open file to strip headers.")); goto bailout; @@ -255,7 +255,7 @@ static int is_mmnoask (const char *buf) if ((p = getenv ("MM_NOASK")) != NULL && *p) { if (m_strcmp(p, "1") == 0) - return (1); + return 1; m_strcpy(tmp, sizeof(tmp), p); p = tmp; @@ -264,22 +264,22 @@ static int is_mmnoask (const char *buf) if ((q = strrchr (p, '/')) != NULL) { if (*(q + 1) == '*') { if (ascii_strncasecmp (buf, p, q - p) == 0) - return (1); + return 1; } else { if (ascii_strcasecmp (buf, p) == 0) - return (1); + return 1; } } else { lng = m_strlen(p); if (buf[lng] == '/' && m_strncasecmp(buf, p, lng) == 0) - return (1); + return 1; } p = NULL; } } - return (0); + return 0; } void mutt_check_lookup_list (BODY * b, char *type, int len) @@ -437,7 +437,7 @@ int mutt_view_attachment (FILE * fp, BODY * a, int flag, HEADER * hdr, if (use_pager) { /* recv case */ - pagerfd = m_tempfd(pagerfile, sizeof(pagerfile), NONULL(MCore.tmpdir), + pagerfd = m_tempfd(pagerfile, sizeof(pagerfile), NONULL(mod_core.tmpdir), fp && !use_mailcap ? a->filename : NULL); } @@ -701,14 +701,14 @@ int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags, if ((s.fpout = mutt_save_attachment_open (path, flags)) == NULL) { mutt_perror ("fopen"); - return (-1); + return -1; } fseeko ((s.fpin = fp), m->offset, 0); mutt_decode_attachment (m, &s); if (m_fclose(&s.fpout) != 0) { mutt_perror ("fclose"); - return (-1); + return -1; } } } else { @@ -718,13 +718,13 @@ int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags, if ((ofp = fopen (m->filename, "r")) == NULL) { mutt_perror ("fopen"); - return (-1); + return -1; } if ((nfp = mutt_save_attachment_open (path, flags)) == NULL) { mutt_perror ("fopen"); m_fclose(&ofp); - return (-1); + return -1; } if (mutt_copy_stream (ofp, nfp) == -1) { @@ -732,7 +732,7 @@ int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags, m_fclose(&ofp); m_fclose(&nfp); - return (-1); + return -1; } m_fclose(&ofp); m_fclose(&nfp); @@ -757,7 +757,7 @@ int mutt_decode_save_attachment (FILE * fp, BODY * m, int pathfd, if (s.fpout == NULL) { close(pathfd); mutt_perror ("fopen"); - return (-1); + return -1; } if (fp == NULL) { @@ -768,12 +768,12 @@ int mutt_decode_save_attachment (FILE * fp, BODY * m, int pathfd, if (stat (m->filename, &st) == -1) { mutt_perror ("stat"); m_fclose(&s.fpout); - return (-1); + return -1; } if ((s.fpin = fopen (m->filename, "r")) == NULL) { mutt_perror ("fopen"); - return (-1); + return -1; } saved_encoding = m->encoding; @@ -808,7 +808,7 @@ int mutt_decode_save_attachment (FILE * fp, BODY * m, int pathfd, m_fclose(&s.fpin); } - return (0); + return 0; } /* Ok, the difference between send and receive: @@ -867,7 +867,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) if ((ifp = fopen (newfile, "r")) == NULL) { mutt_perror ("fopen"); rfc1524_entry_delete(&entry); - return (0); + return 0; } if ((thepid = mutt_create_filter (command, &fpout, NULL, NULL)) < 0) { @@ -894,7 +894,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) unlink (newfile); rfc1524_entry_delete(&entry); - return (1); + return 1; } tok = mime_which_token(type, -1); @@ -911,7 +911,7 @@ int mutt_print_attachment (FILE * fp, BODY * a) ifp = NULL; fpout = NULL; - newfile_fd = m_tempfd(newfile, sizeof(newfile), NONULL(MCore.tmpdir), NULL); + newfile_fd = m_tempfd(newfile, sizeof(newfile), NONULL(mod_core.tmpdir), NULL); if (mutt_decode_save_attachment (fp, a, newfile_fd, M_PRINTING) == 0) { if ((ifp = fopen(newfile, "r")) == NULL) { @@ -956,7 +956,7 @@ int mutt_attach_check (HEADER* hdr) { if (!hdr || !hdr->content || !((regex_t*) AttachRemindRegexp.rx) || (fp = safe_fopen (hdr->content->filename, "r")) == NULL) - return (0); + return 0; while (!found && fgets (buf, sizeof (buf), fp)) { p = buf; @@ -971,5 +971,5 @@ int mutt_attach_check (HEADER* hdr) { } m_fclose(&fp); - return (found); + return found; }