diff options
author | Steve Dickson <steved@redhat.com> | 2013-08-19 12:48:06 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2013-08-19 13:04:49 -0400 |
commit | 6b4e4965a6b82e8d49cea1c0316b951ba4e9e83e (patch) | |
tree | 698082e9f413ca67d3ba362af4512ea91bdee045 /utils/nfsd/nfsd.c | |
parent | da05b199a60e8a8fa91d4d3734cbbe84b23cff69 (diff) | |
download | nfs-utils-6b4e4965a6b82e8d49cea1c0316b951ba4e9e83e.tar.gz nfs-utils-6b4e4965a6b82e8d49cea1c0316b951ba4e9e83e.tar.xz nfs-utils-6b4e4965a6b82e8d49cea1c0316b951ba4e9e83e.zip |
rpc.nfsd: No longer advertise NFS v2 support.
Changed the default protocol versions that rpc.nfsd
register with rpcbind to just 3 and 4. Version 2
can still be enabled with the '-V' flag, but it
will not be on by default.
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/nfsd/nfsd.c')
-rw-r--r-- | utils/nfsd/nfsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/nfsd/nfsd.c b/utils/nfsd/nfsd.c index e87c0a9..df48392 100644 --- a/utils/nfsd/nfsd.c +++ b/utils/nfsd/nfsd.c @@ -100,7 +100,7 @@ main(int argc, char **argv) char *haddr = NULL; int socket_up = 0; int minorvers41 = 0; /* nfsv4 minor version */ - unsigned int versbits = NFSCTL_ALLBITS; + unsigned int versbits = NFSCTL_VERDEFAULT; unsigned int protobits = NFSCTL_ALLBITS; unsigned int proto4 = 0; unsigned int proto6 = 0; |