diff options
author | Günther Deschner <gd@samba.org> | 2009-10-13 10:15:34 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-10-13 10:21:46 +0200 |
commit | ebe0e64ba9815b238cccf7d24821bc473d245707 (patch) | |
tree | b46bbf1291047849349fba950d3e14b687f55080 /source3/utils | |
parent | aa8c142b5e1d126b9a5a8e4a6638bc785292fbc2 (diff) | |
download | samba-ebe0e64ba9815b238cccf7d24821bc473d245707.tar.gz samba-ebe0e64ba9815b238cccf7d24821bc473d245707.tar.xz samba-ebe0e64ba9815b238cccf7d24821bc473d245707.zip |
s3: use enum netr_SchannelType all over the place.
Guenther
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net.c | 4 | ||||
-rw-r--r-- | source3/utils/net_proto.h | 2 | ||||
-rw-r--r-- | source3/utils/net_rpc.c | 2 | ||||
-rw-r--r-- | source3/utils/net_rpc_join.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 585661cd37..e8920e0b02 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -53,7 +53,7 @@ extern bool AllowDebugChange; /* end of internationalization section */ /***********************************************************************/ -uint32 get_sec_channel_type(const char *param) +enum netr_SchannelType get_sec_channel_type(const char *param) { if (!(param && *param)) { return get_default_sec_channel(); @@ -91,7 +91,7 @@ static int net_changesecretpw(struct net_context *c, int argc, const char **argv) { char *trust_pw; - uint32 sec_channel_type = SEC_CHAN_WKSTA; + enum netr_SchannelType sec_channel_type = SEC_CHAN_WKSTA; if(c->opt_force) { if (c->opt_stdin) { diff --git a/source3/utils/net_proto.h b/source3/utils/net_proto.h index e1c1817aec..098e2a22be 100644 --- a/source3/utils/net_proto.h +++ b/source3/utils/net_proto.h @@ -42,7 +42,7 @@ void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid, /* The following definitions come from utils/net.c */ -uint32 get_sec_channel_type(const char *param); +enum netr_SchannelType get_sec_channel_type(const char *param); /* The following definitions come from utils/net_ads.c */ diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 896ea8cc65..afda1a724b 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -309,7 +309,7 @@ static NTSTATUS rpc_oldjoin_internals(struct net_context *c, fstring trust_passwd; unsigned char orig_trust_passwd_hash[16]; NTSTATUS result; - uint32 sec_channel_type; + enum netr_SchannelType sec_channel_type; result = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id, &pipe_hnd); diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c index 23913812b0..d3a63d373d 100644 --- a/source3/utils/net_rpc_join.c +++ b/source3/utils/net_rpc_join.c @@ -138,7 +138,7 @@ int net_rpc_join_newstyle(struct net_context *c, int argc, const char **argv) TALLOC_CTX *mem_ctx; uint32 acb_info = ACB_WSTRUST; uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS; - uint32 sec_channel_type; + enum netr_SchannelType sec_channel_type; struct rpc_pipe_client *pipe_hnd = NULL; /* rpc variables */ |