From f87ae8235ae6042c0e514ba03e4eee7782d5bc6e Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Fri, 9 Oct 2009 13:22:27 -0400 Subject: [PATCH] Make sure all protocol version options are checked in check_vers() Signed-off-by: Steve Dickson --- utils/mount/configfile.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; -- 2.39.2