From e6fb4ea0302f7e6a531a914441e63b24a7acd92a Mon Sep 17 00:00:00 2001 From: bde Date: Tue, 20 Jan 1998 15:22:27 +0000 Subject: Converted to Lite2 mount interface - use vfc_typenum from the already looked up vfsconf struct for nfs instead of MOUNT_NFS. Removed related FreeBSD ifdefs. --- usr.sbin/mountd/mountd.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'usr.sbin/mountd/mountd.c') diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c index 890efff..8152100 100644 --- a/usr.sbin/mountd/mountd.c +++ b/usr.sbin/mountd/mountd.c @@ -43,7 +43,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)mountd.c 8.15 (Berkeley) 5/1/95"; */ static const char rcsid[] = - "$Id: mountd.c,v 1.26 1997/12/10 20:33:59 guido Exp $"; + "$Id: mountd.c,v 1.27 1997/12/13 19:50:14 guido Exp $"; #endif /*not lint*/ #include @@ -256,11 +256,8 @@ main(argc, argv) char **argv; { SVCXPRT *udptransp, *tcptransp; - int c; - int mib[3]; -#ifdef __FreeBSD__ + int c, error, mib[3]; struct vfsconf vfc; - int error; error = getvfsbyname("nfs", &vfc); if (error && vfsisloadable("nfs")) { @@ -271,7 +268,6 @@ main(argc, argv) } if (error) errx(1, "NFS support is not available in the running kernel"); -#endif /* __FreeBSD__ */ while ((c = getopt(argc, argv, "2dlnr")) != -1) switch (c) { @@ -327,10 +323,9 @@ main(argc, argv) fclose(pidfile); } } - if (!resvport_only) { mib[0] = CTL_VFS; - mib[1] = MOUNT_NFS; + mib[1] = vfc.vfc_typenum; mib[2] = NFS_NFSPRIVPORT; if (sysctl(mib, 3, NULL, NULL, &resvport_only, sizeof(resvport_only)) != 0 && errno != ENOENT) { @@ -338,7 +333,6 @@ main(argc, argv) exit(1); } } - if ((udptransp = svcudp_create(RPC_ANYSOCK)) == NULL || (tcptransp = svctcp_create(RPC_ANYSOCK, 0, 0)) == NULL) { syslog(LOG_ERR, "Can't create socket"); -- cgit v1.1