Ack... clean up the logfile name generation that I botched in the last

commit.
This commit is contained in:
Bill Paul 1995-03-30 04:21:31 +00:00
parent effe773667
commit 8d36de4ea2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7484

View File

@ -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);