diff options
author | peter <peter@FreeBSD.org> | 2002-07-25 06:18:22 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-07-25 06:18:22 +0000 |
commit | 01685498260896305007adc292e89f474caa6ee6 (patch) | |
tree | b5a15336f5dc7ceddf5c6e6c15513b420eea63d1 /usr.sbin/nfsd | |
parent | b47ef0cbaf7ca2ebea9291d11bdaa56e5d185b44 (diff) | |
download | FreeBSD-src-01685498260896305007adc292e89f474caa6ee6.zip FreeBSD-src-01685498260896305007adc292e89f474caa6ee6.tar.gz |
Bah, I forgot to commit this part of the nfssvc() cleanup. Sorry folks.
Diffstat (limited to 'usr.sbin/nfsd')
-rw-r--r-- | usr.sbin/nfsd/nfsd.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/nfsd/nfsd.c b/usr.sbin/nfsd/nfsd.c index 97302e3..fcf53db 100644 --- a/usr.sbin/nfsd/nfsd.c +++ b/usr.sbin/nfsd/nfsd.c @@ -81,8 +81,6 @@ int debug = 1; int debug = 0; #endif -struct nfsd_srvargs nsd; - #define MAXNFSDCNT 20 #define DEFNFSDCNT 4 pid_t children[MAXNFSDCNT]; /* PIDs of children */ @@ -833,8 +831,7 @@ start_server(int master) int status; status = 0; - nsd.nsd_nfsd = NULL; - if (nfssvc(NFSSVC_NFSD, &nsd) < 0) { + if (nfssvc(NFSSVC_NFSD, NULL) < 0) { syslog(LOG_ERR, "nfssvc: %m"); status = 1; } |