X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhoutsbr.c;h=92352539e5534c045a127d6b047ab8ea63eb7675;hp=f2b30b657fed20eaadbddff8928add76fa5549bb;hb=2f689a1cb907a5de04e6d39ffd217a69af3216c7;hpb=794dab6aa5027ffaf024506140c258f6a0a9322d diff --git a/uip/mhoutsbr.c b/uip/mhoutsbr.c index f2b30b6..9235253 100644 --- a/uip/mhoutsbr.c +++ b/uip/mhoutsbr.c @@ -4,6 +4,10 @@ * -- given a Content structure * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include @@ -12,8 +16,8 @@ #include #include #include -#include -#include +#include +#include #include #include @@ -22,7 +26,6 @@ #endif -extern int errno; extern int ebcdicsw; static char ebcdicsafe[0x100] = { @@ -67,6 +70,7 @@ static char nib2b64[0x40+1] = * prototypes */ int output_message (CT, char *); +int output_message_fp (CT, FILE *, char *); int writeBase64aux (FILE *, FILE *); /* @@ -87,27 +91,33 @@ static int writeBase64 (CT, FILE *); */ int -output_message (CT ct, char *file) +output_message_fp (CT ct, FILE *fp, char *file) { - FILE *fp; - - if ((fp = fopen (file, "w")) == NULL) { - advise (file, "unable to open for writing"); - return NOTOK; - } - if (output_content (ct, fp) == NOTOK) return NOTOK; if (fflush (fp)) { - advise (file, "error writing to"); + advise ((file?file:""), "error writing to"); return NOTOK; } - fclose (fp); - return OK; } +int +output_message (CT ct, char *file) +{ + FILE *fp; + int status; + + if ((fp = fopen (file, "w")) == NULL) { + advise (file, "unable to open for writing"); + return NOTOK; + } + status = output_message_fp(ct, fp, file); + fclose(fp); + return status; +} + /* * Output a Content structure to a file. @@ -260,7 +270,7 @@ writeExternalBody (CT ct, FILE *out) case 'N': for (ap = ci2->ci_attrs, ep = ci2->ci_values; *ap; ap++, ep++) - if (!strcasecmp (*ap, "name")) { + if (!mh_strcasecmp (*ap, "name")) { fprintf (out, "%s", *ep); break; }