Compile error in client/mount.cifs.c. When compiling on older linux distros you will get a compile error stating that the symbol MS_BIND is undefined. Inserting the following into client/mount.cifs.c just prior to #define MS_MOVE fixes the problem: #ifndef MS_BIND #define MS_BIND 4096 #endif
This was fixed in current SAMBA_3 branch by jra see http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/branches/SAMBA_3_0/source/client/mount.cifs.c?rev=16945&r1=16360&r2=16945&diff_format=h