diff options
author | petef <petef@FreeBSD.org> | 2002-03-28 23:01:37 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-03-28 23:01:37 +0000 |
commit | 8051000d933df795cc60525399e7c07e30c823c1 (patch) | |
tree | d3a998bdb42bff2b0d154f5bbbfaceb642ca1f1f /mail | |
parent | 1cea5e8a4ebb9808a523fc4e17cdc3c47f577a48 (diff) | |
download | FreeBSD-ports-8051000d933df795cc60525399e7c07e30c823c1.zip FreeBSD-ports-8051000d933df795cc60525399e7c07e30c823c1.tar.gz |
Let this port build on -current (stdout issues).
PR: 36430
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Reported by: bento
Diffstat (limited to 'mail')
-rw-r--r-- | mail/emil/files/patch-main.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/emil/files/patch-main.c b/mail/emil/files/patch-main.c new file mode 100644 index 0000000..b215196 --- /dev/null +++ b/mail/emil/files/patch-main.c @@ -0,0 +1,22 @@ +$FreeBSD$ + +--- main.c.orig Thu Mar 28 20:57:50 2002 ++++ main.c Thu Mar 28 20:58:31 2002 +@@ -69,7 +69,7 @@ + int pseudo_route = 0; + + int in_fd = 0; +-FILE * out_fd = stdout; ++FILE * out_fd; + FILE * char_fd = NULL; + FILE * conf_fd = NULL; + off_t pz; +@@ -83,7 +83,7 @@ + int no_run = FALSE; + char *cmailer = NULL; + char *member = NULL; +- ++ out_fd = stdout; + #ifdef HAVE_GETPAGESIZE + pz = (off_t) getpagesize(); + #elif defined(hpux) || defined(_AUX_SOURCE) |