summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorhjl <hjl>2001-02-11 01:11:44 +0000
committerhjl <hjl>2001-02-11 01:11:44 +0000
commit0bdb8d4f216cafb4fef03c9a1fc1f87508eed2d3 (patch)
tree4559199796d9003e68d385a9404e4a81380197a3 /utils
parentdccf562f4b7e9979f586cb085d3a34b7825d15db (diff)
downloadnfs-utils-0bdb8d4f216cafb4fef03c9a1fc1f87508eed2d3.tar.gz
nfs-utils-0bdb8d4f216cafb4fef03c9a1fc1f87508eed2d3.tar.xz
nfs-utils-0bdb8d4f216cafb4fef03c9a1fc1f87508eed2d3.zip
2001-02-02 H.J. Lu <hjl@lucon.org>
* support/include/rpcmisc.h (rpc_init): Remove bufsize. * support/nfs/rpcmisc.c (makesock): Remove socksz and comment out SO_SNDBUF/SO_RCVBUF. (rpc_init): Remove bufsize and remove socksz in calls to makesock (). * utils/mountd/mountd.c (main): Remove bufsize in calls to rpc_init ().
Diffstat (limited to 'utils')
-rw-r--r--utils/mountd/mountd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/mountd/mountd.c b/utils/mountd/mountd.c
index 4df7083..8779afe 100644
--- a/utils/mountd/mountd.c
+++ b/utils/mountd/mountd.c
@@ -454,13 +454,13 @@ main(int argc, char **argv)
if (nfs_version & 0x1)
rpc_init("mountd", MOUNTPROG, MOUNTVERS,
- mount_dispatch, port, 0);
+ mount_dispatch, port);
if (nfs_version & (0x1 << 1))
rpc_init("mountd", MOUNTPROG, MOUNTVERS_POSIX,
- mount_dispatch, port, 0);
+ mount_dispatch, port);
if (nfs_version & (0x1 << 2))
rpc_init("mountd", MOUNTPROG, MOUNTVERS_NFSV3,
- mount_dispatch, port, 0);
+ mount_dispatch, port);
sa.sa_handler = killer;
sigaction(SIGHUP, &sa, NULL);