X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Freplsbr.c;h=0b0ba6e62de5f966665c7cccc1fced9ced574887;hp=4b2b30d56c710fdc9a14c4d8aaf09498af63e373;hb=993b0d73a4f5a54c46b494b297895bf08fcaf197;hpb=9d27405ff3562d183784a244ee44bbaf71eabda8 diff --git a/uip/replsbr.c b/uip/replsbr.c index 4b2b30d..0b0ba6e 100644 --- a/uip/replsbr.c +++ b/uip/replsbr.c @@ -13,6 +13,7 @@ #include #include #include /* L_SET */ +#include extern short ccto; /* from repl.c */ extern short cccc; @@ -247,6 +248,10 @@ finished: * or add mhn directives */ if (filter) { + fflush(out); + if (ferror (out)) + adios (drft, "error writing"); + replfilter (inb, out, filter); } else if (mime && mp) { fprintf (out, "#forw [original message] +%s %s\n", @@ -413,6 +418,8 @@ insert (struct mailname *np) /* * Call the mhlproc + * + * This function expects that argument out has been fflushed by the caller. */ static void @@ -420,6 +427,7 @@ replfilter (FILE *in, FILE *out, char *filter) { int pid; char *mhl; + char *errstr; if (filter == NULL) return; @@ -431,7 +439,6 @@ replfilter (FILE *in, FILE *out, char *filter) rewind (in); lseek (fileno(in), (off_t) 0, SEEK_SET); - fflush (out); switch (pid = vfork ()) { case NOTOK: @@ -443,8 +450,12 @@ replfilter (FILE *in, FILE *out, char *filter) closefds (3); execlp (mhlproc, mhl, "-form", filter, "-noclear", NULL); - fprintf (stderr, "unable to exec "); - perror (mhlproc); + errstr = strerror(errno); + write(2, "unable to exec ", 15); + write(2, mhlproc, strlen(mhlproc)); + write(2, ": ", 2); + write(2, errstr, strlen(errstr)); + write(2, "\n", 1); _exit (-1); default: