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

Fix build for centos52

Use unsigned instead of bool.
parent 8d03a6f3
...@@ -107,7 +107,7 @@ struct smb_vol { ...@@ -107,7 +107,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