summaryrefslogtreecommitdiffstats
path: root/source/web
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-10-19 11:38:36 -0700
committerJeremy Allison <jra@samba.org>2007-10-19 11:38:36 -0700
commit793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a (patch)
tree1814e3e181953414f416c1ffa4bc4433bbe5c847 /source/web
parent36578b22f12a7de21df5a795d7702c10d19b1f3d (diff)
downloadsamba-793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a.tar.gz
samba-793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a.tar.xz
samba-793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a.zip
Fix the popt / bool issues. Some places we used BOOL
where we meant int. Fix this. Thanks to metze for pointing this out. Jeremy.
Diffstat (limited to 'source/web')
-rw-r--r--source/web/swat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/web/swat.c b/source/web/swat.c
index cf90ec0792e..7d74fa9d71f 100644
--- a/source/web/swat.c
+++ b/source/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;