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/rpcclient | |
parent | aa8c142b5e1d126b9a5a8e4a6638bc785292fbc2 (diff) | |
download | samba-ebe0e64ba9815b238cccf7d24821bc473d245707.tar.gz samba-ebe0e64ba9815b238cccf7d24821bc473d245707.tar.bz2 samba-ebe0e64ba9815b238cccf7d24821bc473d245707.zip |
s3: use enum netr_SchannelType all over the place.
Guenther
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_netlogon.c | 2 | ||||
-rw-r--r-- | source3/rpcclient/rpcclient.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_netlogon.c b/source3/rpcclient/cmd_netlogon.c index ae76652113..2fbadf2a75 100644 --- a/source3/rpcclient/cmd_netlogon.c +++ b/source3/rpcclient/cmd_netlogon.c @@ -1051,7 +1051,7 @@ static NTSTATUS cmd_netlogon_database_redo(struct rpc_pipe_client *cli, struct netr_Authenticator clnt_creds, srv_cred; struct netr_DELTA_ENUM_ARRAY *delta_enum_array = NULL; unsigned char trust_passwd_hash[16]; - uint32_t sec_channel_type = 0; + enum netr_SchannelType sec_channel_type = 0; struct netr_ChangeLogEntry e; uint32_t rid = 500; diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 7a20e487f2..20ea8a05e7 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -694,7 +694,7 @@ static NTSTATUS do_cmd(struct cli_state *cli, if (ndr_syntax_id_equal(cmd_entry->interface, &ndr_table_netlogon.syntax_id)) { uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS; - uint32 sec_channel_type; + enum netr_SchannelType sec_channel_type; uchar trust_password[16]; const char *machine_account; |