svn commit: samba r21844 - in branches/SAMBA_3_0_25/source/client: .

jra at samba.org jra at samba.org
Thu Mar 15 19:01:48 GMT 2007


Author: jra
Date: 2007-03-15 19:01:48 +0000 (Thu, 15 Mar 2007)
New Revision: 21844

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

Log:
Janitor for Stevef : 
mount.cifs compile on old libc missing bind mount #define

Thanks to Thomas Jarosch for pointing this out.
Jeremy.

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


Changeset:
Modified: branches/SAMBA_3_0_25/source/client/mount.cifs.c
===================================================================
--- branches/SAMBA_3_0_25/source/client/mount.cifs.c	2007-03-15 13:21:54 UTC (rev 21843)
+++ branches/SAMBA_3_0_25/source/client/mount.cifs.c	2007-03-15 19:01:48 UTC (rev 21844)
@@ -59,6 +59,10 @@
 #define MS_MOVE 8192 
 #endif 
 
+#ifndef MS_BIND
+#define MS_BIND 4096
+#endif
+
 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
 
 const char *thisprogram;



More information about the samba-cvs mailing list