From 9a85533914119fb995fb61555c9f6e0018d4d181 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 19 Oct 2007 11:38:36 -0700 Subject: 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) --- source3/web/swat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/web/swat.c') diff --git a/source3/web/swat.c b/source3/web/swat.c index cf90ec0792..7d74fa9d71 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; -- cgit