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/utils/net.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index 6cdc7f8671..068118f476 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -74,9 +74,9 @@ int opt_flags = -1; int opt_timeout = 0; const char *opt_target_workgroup = NULL; int opt_machine_pass = 0; -bool opt_localgroup = False; -bool opt_domaingroup = False; -static bool do_talloc_report=False; +int opt_localgroup = False; +int opt_domaingroup = False; +static int do_talloc_report=False; const char *opt_newntname = ""; int opt_rid = 0; int opt_acls = 0; @@ -84,9 +84,9 @@ int opt_attrs = 0; int opt_timestamps = 0; const char *opt_exclude = NULL; const char *opt_destination = NULL; -bool opt_testmode = False; +int opt_testmode = False; -bool opt_have_ip = False; +int opt_have_ip = False; struct in_addr opt_dest_ip; extern bool AllowDebugChange; -- cgit