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.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/utils/net.h') diff --git a/source3/utils/net.h b/source3/utils/net.h index d2deb931b8..177c6d3601 100644 --- a/source3/utils/net.h +++ b/source3/utils/net.h @@ -102,8 +102,8 @@ extern const char *opt_user_name; extern const char *opt_password; extern bool opt_user_specified; -extern bool opt_localgroup; -extern bool opt_domaingroup; +extern int opt_localgroup; +extern int opt_domaingroup; extern const char *opt_newntname; extern int opt_rid; extern int opt_acls; @@ -111,9 +111,9 @@ extern int opt_attrs; extern int opt_timestamps; extern const char *opt_exclude; extern const char *opt_destination; -extern bool opt_testmode; +extern int opt_testmode; -extern bool opt_have_ip; +extern int opt_have_ip; extern struct in_addr opt_dest_ip; extern const char *share_type[]; -- cgit