svn commit: samba r16839 - in trunk/source/client: .
vlendec at samba.org
vlendec at samba.org
Thu Jul 6 18:48:22 GMT 2006
Author: vlendec
Date: 2006-07-06 18:48:22 +0000 (Thu, 06 Jul 2006)
New Revision: 16839
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16839
Log:
Next step getting ancient Linux to build....
Steve, you might want to take a look.
Volker
Modified:
trunk/source/client/mount.cifs.c
Changeset:
Modified: trunk/source/client/mount.cifs.c
===================================================================
--- trunk/source/client/mount.cifs.c 2006-07-06 17:17:35 UTC (rev 16838)
+++ trunk/source/client/mount.cifs.c 2006-07-06 18:48:22 UTC (rev 16839)
@@ -935,10 +935,20 @@
++nomtab;
break;
case 'b':
+#ifdef MS_BIND
flags |= MS_BIND;
+#else
+ fprintf(stderr,
+ "option 'b' (MS_BIND) not supported\n");
+#endif
break;
case 'm':
+#ifdef MS_MOVE
flags |= MS_MOVE;
+#else
+ fprintf(stderr,
+ "option 'm' (MS_MOVE) not supported\n");
+#endif
break;
case 'o':
orgoptions = strdup(optarg);
More information about the samba-cvs
mailing list