diff options
Diffstat (limited to 'source3/client/mount.cifs.c')
-rwxr-xr-x | source3/client/mount.cifs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c index ad56decb00..7ac4291f17 100755 --- a/source3/client/mount.cifs.c +++ b/source3/client/mount.cifs.c @@ -494,6 +494,8 @@ static int parse_options(char * options, int * filesys_flags) *filesys_flags |= MS_RDONLY; } else if (strncmp(data, "rw", 2) == 0) { *filesys_flags &= ~MS_RDONLY; + } else if (strncmp(data, "remount", 7) == 0) { + *filesys_flags |= MS_REMOUNT; } /* else if (strnicmp(data, "port", 4) == 0) { if (value && *value) { vol->port = |