svn commit: samba r6505 - in branches/SAMBA_3_0/source/client: .

sfrench at samba.org sfrench at samba.org
Thu Apr 28 05:09:31 GMT 2005


Author: sfrench
Date: 2005-04-28 05:09:30 +0000 (Thu, 28 Apr 2005)
New Revision: 6505

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6505

Log:
Add missing remount flag handling

Modified:
   branches/SAMBA_3_0/source/client/mount.cifs.c


Changeset:
Modified: branches/SAMBA_3_0/source/client/mount.cifs.c
===================================================================
--- branches/SAMBA_3_0/source/client/mount.cifs.c	2005-04-28 00:51:57 UTC (rev 6504)
+++ branches/SAMBA_3_0/source/client/mount.cifs.c	2005-04-28 05:09:30 UTC (rev 6505)
@@ -494,6 +494,8 @@
 			*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 =



More information about the samba-cvs mailing list