Blame SOURCES/autofs-5.1.3-handle-additional-nfs-versions-in-mount_nfs_c.patch

304803
autofs-5.1.3 - handle additional nfs versions in mount_nfs.c
304803
304803
From: Ian Kent <raven@themaw.net>
304803
304803
Since NFSv4 can now have a subversion it needs to be allowed for.
304803
304803
It's enough to check for an options string starting with "vers=4" or
304803
"nfsvers=4" because it's used only to set a flag used for special
304803
casing the availibility probe for any NFS version 4 version.
304803
304803
Signed-off-by: Ian Kent <raven@themaw.net>
304803
---
304803
 CHANGELOG           |    1 +
304803
 modules/mount_nfs.c |    5 +++--
304803
 2 files changed, 4 insertions(+), 2 deletions(-)
304803
304803
--- autofs-5.0.7.orig/CHANGELOG
304803
+++ autofs-5.0.7/CHANGELOG
304803
@@ -263,6 +263,7 @@
304803
 - be silent about sss library not found.
304803
 - be silent about nis domain not set.
304803
 - make map source reference message debug only.
304803
+- handle additional nfs versions in mount_nfs.c.
304803
 
304803
 25/07/2012 autofs-5.0.7
304803
 =======================
304803
--- autofs-5.0.7.orig/modules/mount_nfs.c
304803
+++ autofs-5.0.7/modules/mount_nfs.c
304803
@@ -148,8 +148,9 @@ int mount_mount(struct autofs_point *ap,
304803
 			} else if (_strncmp("use-weight-only", cp, o_len) == 0) {
304803
 				flags |= MOUNT_FLAG_USE_WEIGHT_ONLY;
304803
 			} else {
304803
-				if (_strncmp("vers=4", cp, o_len) == 0 ||
304803
-				    _strncmp("nfsvers=4", cp, o_len) == 0)
304803
+				/* Is any version of NFSv4 in the options */
304803
+				if (_strncmp("vers=4", cp, 6) == 0 ||
304803
+				    _strncmp("nfsvers=4", cp, 9) == 0)
304803
 					vers = NFS4_VERS_MASK | TCP_SUPPORTED;
304803
 				else if (_strncmp("vers=3", cp, o_len) == 0 ||
304803
 					 _strncmp("nfsvers=3", cp, o_len) == 0) {