From ae816fe9f95b78d2c7d99304dd1c7e4c2820d1b9 Mon Sep 17 00:00:00 2001 From: Steve French Date: Thu, 28 Apr 2005 05:09:30 +0000 Subject: r6505: Add missing remount flag handling (This used to be commit 37685979bb4075a42018b89f3aee230fead5a7a4) --- source3/client/mount.cifs.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/client') 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 = -- cgit