From 70fde6311dd7418040913d3f2abac22f53ea956f Mon Sep 17 00:00:00 2001 From: Steve French Date: Wed, 11 Feb 2004 23:11:00 +0000 Subject: Mount helper fixes for nosetuid, noexec part two of two (This used to be commit c2b4d81a8dae23170d32713e3e766dcf5be9a040) --- source3/client/mount.cifs.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'source3/client/mount.cifs.c') diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c index fc6bbb5b4f..7b5b87eddf 100755 --- a/source3/client/mount.cifs.c +++ b/source3/client/mount.cifs.c @@ -231,7 +231,7 @@ static int get_password_from_file(int file_descript, char * filename) return rc; } -static int parse_options(char * options, int filesys_flags) +static int parse_options(char * options, int * filesys_flags) { char * data; char * percent_char = 0; @@ -421,21 +421,21 @@ static int parse_options(char * options, int filesys_flags) and could generate spurious warnings depending on the level of the corresponding cifs vfs kernel code */ } else if (strncmp(data, "nosuid", 6) == 0) { - filesys_flags |= MS_NOSUID; + *filesys_flags |= MS_NOSUID; } else if (strncmp(data, "suid", 4) == 0) { - filesys_flags &= ~MS_NOSUID; + *filesys_flags &= ~MS_NOSUID; } else if (strncmp(data, "nodev", 5) == 0) { - filesys_flags |= MS_NODEV; + *filesys_flags |= MS_NODEV; } else if (strncmp(data, "dev", 3) == 0) { - filesys_flags &= ~MS_NODEV; + *filesys_flags &= ~MS_NODEV; } else if (strncmp(data, "noexec", 6) == 0) { - filesys_flags |= MS_NOEXEC; + *filesys_flags |= MS_NOEXEC; } else if (strncmp(data, "exec", 4) == 0) { - filesys_flags &= ~MS_NOEXEC; + *filesys_flags &= ~MS_NOEXEC; } else if (strncmp(data, "ro", 3) == 0) { - filesys_flags |= MS_RDONLY; + *filesys_flags |= MS_RDONLY; } else if (strncmp(data, "rw", 2) == 0) { - filesys_flags &= ~MS_RDONLY; + *filesys_flags &= ~MS_RDONLY; } /* else if (strnicmp(data, "port", 4) == 0) { if (value && *value) { vol->port = @@ -727,7 +727,7 @@ int main(int argc, char ** argv) ipaddr = parse_server(share_name); - if (orgoptions && parse_options(orgoptions, flags)) + if (orgoptions && parse_options(orgoptions, &flags)) return 1; /* BB save off path and pop after mount returns? */ -- cgit