diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-19 11:38:36 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-10-19 11:38:36 -0700 |
commit | 9a85533914119fb995fb61555c9f6e0018d4d181 (patch) | |
tree | 61bd1af2845f9fa2eb7632c1173d382131772798 /source3/web | |
parent | 61e482cfdfec09ed01225320ba6a4acd47081f63 (diff) | |
download | samba-9a85533914119fb995fb61555c9f6e0018d4d181.tar.gz |
Fix the popt / bool issues. Some places we used BOOL
where we meant int. Fix this. Thanks to metze for
pointing this out.
Jeremy.
(This used to be commit 793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/swat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index cf90ec0792e..7d74fa9d71f 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -30,8 +30,8 @@ #include "includes.h" #include "web/swat_proto.h" -static bool demo_mode = False; -static bool passwd_only = False; +static int demo_mode = False; +static int passwd_only = False; static bool have_write_access = False; static bool have_read_access = False; static int iNumNonAutoPrintServices = 0; |