diff options
author | wpaul <wpaul@FreeBSD.org> | 1995-03-30 04:21:31 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1995-03-30 04:21:31 +0000 |
commit | eeec2118f1020648880cb89eed724057e1b12fdb (patch) | |
tree | bd08f0d5dbd7a66b4b0ff3e9869f621ef295f772 /gnu/libexec | |
parent | ca122199e6ffe303a89352b0ef52b505bfc745c4 (diff) | |
download | FreeBSD-src-eeec2118f1020648880cb89eed724057e1b12fdb.zip FreeBSD-src-eeec2118f1020648880cb89eed724057e1b12fdb.tar.gz |
Ack... clean up the logfile name generation that I botched in the last
commit.
Diffstat (limited to 'gnu/libexec')
-rw-r--r-- | gnu/libexec/ypxfr/ypxfr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/libexec/ypxfr/ypxfr.c b/gnu/libexec/ypxfr/ypxfr.c index 655ec63..292ff98 100644 --- a/gnu/libexec/ypxfr/ypxfr.c +++ b/gnu/libexec/ypxfr/ypxfr.c @@ -18,7 +18,7 @@ Modified for use with FreeBSD 2.x by Bill Paul (wpaul@ctr.columbia.edu) - $Id: ypxfr.c,v 1.2 1995/02/06 23:35:49 wpaul Exp $ + $Id: ypxfr.c,v 1.3 1995/03/30 04:14:46 wpaul Exp $ */ #include <stdio.h> @@ -271,8 +271,7 @@ main (int argc, char **argv) int fd; char logfile[MAXPATHLEN]; sprintf (logfile, "%sypxfr.log", _PATH_YP); - if ((fd = open("/var/yp/ypxfr.log", - O_CREAT|O_WRONLY|O_APPEND, 0644))) { + if ((fd = open(logfile, O_CREAT|O_WRONLY|O_APPEND, 0644))) { close(0); dup(fd); close(1); |