diff options
Diffstat (limited to 'utils/mount/configfile.c')
-rw-r--r-- | utils/mount/configfile.c | 4 |
1 files changed, 1 insertions, 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; |