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/utils/net.c | |
parent | 61e482cfdfec09ed01225320ba6a4acd47081f63 (diff) | |
download | samba-9a85533914119fb995fb61555c9f6e0018d4d181.tar.gz samba-9a85533914119fb995fb61555c9f6e0018d4d181.tar.xz samba-9a85533914119fb995fb61555c9f6e0018d4d181.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.
(This used to be commit 793a9d24a163cb6cf5a3a0aa5ae30e9f8cf4744a)
Diffstat (limited to 'source3/utils/net.c')
-rw-r--r-- | source3/utils/net.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 6cdc7f86713..068118f476f 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; |