You need to sign in or sign up before continuing.
Commit f946b7ee authored by Pavel Shilovsky's avatar Pavel Shilovsky

Fix build for 2.6.24

Use unsigned instead of bool.
parent 1eedf5d7
...@@ -91,7 +91,7 @@ struct smb_vol { ...@@ -91,7 +91,7 @@ struct smb_vol {
unsigned nocase; /* request case insensitive filenames */ unsigned nocase; /* request case insensitive filenames */
unsigned nobrl; /* disable sending byte range locks to srv */ unsigned nobrl; /* disable sending byte range locks to srv */
unsigned mand_lock:1; /* send mandatory not posix byte range lock reqs */ unsigned mand_lock:1; /* send mandatory not posix byte range lock reqs */
bool wine_mode:1; unsigned wine_mode:1;
unsigned int rsize; unsigned int rsize;
unsigned int wsize; unsigned int wsize;
unsigned int sockopt; unsigned int sockopt;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment