diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-03-02 01:00:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-03-02 01:00:12 +0000 |
commit | f02c8eba176d1d5da3aeca63040729cce8e2a0a4 (patch) | |
tree | d9ac9d07f01a2dd32858999b80c67729c099f7df /sbin/nfsd/nfsd.c | |
parent | 93fddada8eaaecc631c5978b261eb65a2e5b2379 (diff) |
bad openlog call; andrushock@korovino.net
Diffstat (limited to 'sbin/nfsd/nfsd.c')
-rw-r--r-- | sbin/nfsd/nfsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/nfsd/nfsd.c b/sbin/nfsd/nfsd.c index 49acb0e8baa..50729d51c0e 100644 --- a/sbin/nfsd/nfsd.c +++ b/sbin/nfsd/nfsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsd.c,v 1.22 2003/08/11 19:10:30 millert Exp $ */ +/* $OpenBSD: nfsd.c,v 1.23 2004/03/02 01:00:11 deraadt Exp $ */ /* $NetBSD: nfsd.c,v 1.19 1996/02/18 23:18:56 mycroft Exp $ */ /* @@ -43,7 +43,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)nfsd.c 8.9 (Berkeley) 3/29/95"; #else -static const char rcsid[] = "$OpenBSD: nfsd.c,v 1.22 2003/08/11 19:10:30 millert Exp $"; +static const char rcsid[] = "$OpenBSD: nfsd.c,v 1.23 2004/03/02 01:00:11 deraadt Exp $"; #endif #endif /* not lint */ @@ -214,7 +214,7 @@ main(int argc, char *argv[]) err(1, "can't register with portmap for TCP."); return (0); } - openlog("nfsd:", LOG_PID, LOG_DAEMON); + openlog("nfsd", LOG_PID, LOG_DAEMON); for (i = 0; i < nfsdcnt; i++) { switch (fork()) { |