diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-08 21:39:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-08 21:39:09 +0000 |
commit | 758e515b3bba269df3fa3c77d6d97c050141c435 (patch) | |
tree | 353b916a5885fdf1836361cf274caffefd0ddd7e /usr.bin/vacation/vacation.c | |
parent | b581564d6458010516c7e2d90b0a96272b16f6cd (diff) |
close(fileno()) inside vfork(); cgd
Diffstat (limited to 'usr.bin/vacation/vacation.c')
-rw-r--r-- | usr.bin/vacation/vacation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vacation/vacation.c b/usr.bin/vacation/vacation.c index 4b7cbd34c75..7c58f4f7d4b 100644 --- a/usr.bin/vacation/vacation.c +++ b/usr.bin/vacation/vacation.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vacation.c,v 1.9 1998/02/07 02:47:21 millert Exp $ */ +/* $OpenBSD: vacation.c,v 1.10 1998/07/08 21:39:08 deraadt Exp $ */ /* $NetBSD: vacation.c,v 1.7 1995/04/29 05:58:27 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)vacation.c 8.2 (Berkeley) 1/26/94"; #endif -static char rcsid[] = "$OpenBSD: vacation.c,v 1.9 1998/02/07 02:47:21 millert Exp $"; +static char rcsid[] = "$OpenBSD: vacation.c,v 1.10 1998/07/08 21:39:08 deraadt Exp $"; #endif /* not lint */ /* @@ -426,7 +426,7 @@ sendmessage(myname) dup2(pvect[0], 0); close(pvect[0]); close(pvect[1]); - fclose(mfp); + close(fileno(mfp)); execl(_PATH_SENDMAIL, "sendmail", "-f", myname, "--", from, NULL); syslog(LOG_ERR, "vacation: can't exec %s: %m", _PATH_SENDMAIL); |