diff options
author | scrappy <scrappy@FreeBSD.org> | 1996-04-13 06:08:24 +0000 |
---|---|---|
committer | scrappy <scrappy@FreeBSD.org> | 1996-04-13 06:08:24 +0000 |
commit | 0015477a1b96c8e1859b6ee0652cc94b48d2f424 (patch) | |
tree | 563db080814396308f7d7a3d26af6fd702be10a2 /sbin/nfsd | |
parent | 13a1a11a2407d76c6c3dee424c52f4d31fd1ad36 (diff) | |
download | FreeBSD-src-0015477a1b96c8e1859b6ee0652cc94b48d2f424.zip FreeBSD-src-0015477a1b96c8e1859b6ee0652cc94b48d2f424.tar.gz |
default to udp if no flags specified...closes PR#bin/759
- should this be documented in the man page?
Diffstat (limited to 'sbin/nfsd')
-rw-r--r-- | sbin/nfsd/nfsd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/nfsd/nfsd.c b/sbin/nfsd/nfsd.c index 5887af8..96249cf 100644 --- a/sbin/nfsd/nfsd.c +++ b/sbin/nfsd/nfsd.c @@ -229,6 +229,7 @@ main(argc, argv, envp) case '?': usage(); }; + if(argc) udpflag = 1; argv += optind; argc -= optind; |