From d1fafca6087b1be684d98a004965c3d790552180 Mon Sep 17 00:00:00 2001 From: Steve French Date: Fri, 20 Jun 2003 16:41:41 +0000 Subject: Fix mount options for ro, dir_mode, file_mode (This used to be commit 7e7cf0dd98ec8e28c02cb9e36064eaf098339801) --- source3/client/mount.cifs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c index 6edb06aedf..9592dbdf96 100755 --- a/source3/client/mount.cifs.c +++ b/source3/client/mount.cifs.c @@ -377,7 +377,7 @@ int main(int argc, char ** argv) test_opts = xstrdup(optarg); break;*/ case 'r': /* mount readonly */ - flags |= MS_RDONLY;; + flags |= MS_RDONLY; break; case 'U': uuid = optarg; @@ -389,7 +389,7 @@ int main(int argc, char ** argv) printf ("mount: %s\n", version); exit (0);*/ case 'w': - flags &= ~MS_RDONLY;; + flags &= ~MS_RDONLY; break; /* case 0: break; -- cgit