aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/cifs/connect.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index a65d311d163a..9f59887badd2 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -1113,6 +1113,8 @@ cifs_parse_mount_options(char *options, const char *devname,
1113 } else if (!strnicmp(data, "uid", 3) && value && *value) { 1113 } else if (!strnicmp(data, "uid", 3) && value && *value) {
1114 vol->linux_uid = simple_strtoul(value, &value, 0); 1114 vol->linux_uid = simple_strtoul(value, &value, 0);
1115 uid_specified = true; 1115 uid_specified = true;
1116 } else if (!strnicmp(data, "cruid", 5) && value && *value) {
1117 vol->cred_uid = simple_strtoul(value, &value, 0);
1116 } else if (!strnicmp(data, "forceuid", 8)) { 1118 } else if (!strnicmp(data, "forceuid", 8)) {
1117 override_uid = 1; 1119 override_uid = 1;
1118 } else if (!strnicmp(data, "noforceuid", 10)) { 1120 } else if (!strnicmp(data, "noforceuid", 10)) {