From: Steve Dickson Date: Fri, 9 Oct 2009 17:22:27 +0000 (-0400) Subject: Make sure all protocol version options are checked in check_vers() X-Git-Tag: nfs-utils-1-2-1-rc7~3 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=f87ae8235ae6042c0e514ba03e4eee7782d5bc6e Make sure all protocol version options are checked in check_vers() Signed-off-by: Steve Dickson --- diff --git a/utils/mount/configfile.c b/utils/mount/configfile.c index b0aa6f0..d3285f8 100644 --- a/utils/mount/configfile.c +++ b/utils/mount/configfile.c @@ -190,9 +190,7 @@ int inline check_vers(char *mopt, char *field) { int i; - if (strncmp("mountvers", field, strlen("mountvers") != 0 && - (strcasecmp(field, "nfsvers") == 0 || - strcasecmp(field, "vers") == 0))) { + if (strncmp("mountvers", field, strlen("mountvers")) != 0) { for (i=0; versions[i]; i++) if (strcasestr(mopt, versions[i]) != NULL) return 1;