From 993b0d73a4f5a54c46b494b297895bf08fcaf197 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 5 Oct 2005 10:05:24 +0000 Subject: [PATCH] Harald Geyer: back out fork/vfork workaround and handle the issue directly --- ChangeLog | 5 +++++ h/mh.h | 9 --------- uip/replsbr.c | 17 ++++++++++++++--- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 218fcf1..7dfebbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-05 Oliver Kiddle + + * Harald Geyer: h/mh.h, uip/replsbr.c: back out previous change + (fork/vfork) and replace with code that handles the issue directly + 2005-05-18 Oliver Kiddle * Debian Bug# 143485: Nick Rusnov: h/mh.h: use fork instead of diff --git a/h/mh.h b/h/mh.h index afe2682..81a6021 100644 --- a/h/mh.h +++ b/h/mh.h @@ -7,15 +7,6 @@ #include -/* A quick fix for Linux systems. According to the vfork manual page, - there is little difference in performance, so we aren't losing much. - But this fixes a minor message bug so why not? On NetBSD, this should - probably not happen. */ -#ifdef linux -#define vfork fork -#endif - - /* * Well-used constants */ 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: -- 1.7.10.4