Bug 4006 - Compile error in client/mount.cifs.c
Summary: Compile error in client/mount.cifs.c
Status: RESOLVED FIXED
Alias: None
Product: CifsVFS
Classification: Unclassified
Component: user space tools (show other bugs)
Version: 2.6
Hardware: x86 Linux
: P3 normal
Target Milestone: ---
Assignee: Tim Potter
QA Contact: Samba QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-07 13:03 UTC by Stephen Boyd
Modified: 2006-08-11 11:43 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stephen Boyd 2006-08-07 13:03:18 UTC
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