diff options
author | Günther Deschner <gd@samba.org> | 2009-10-08 00:34:05 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-10-13 00:07:45 +0200 |
commit | 4a1b50afd567313cc25d5bbc14e01e170aa62a00 (patch) | |
tree | 655537d2d31a0f77e9b3284f25ea85d4cab2a8d8 /source3/include | |
parent | faad888e1a3bfd339df92d8d749e95034f64c80a (diff) | |
download | samba-4a1b50afd567313cc25d5bbc14e01e170aa62a00.tar.gz samba-4a1b50afd567313cc25d5bbc14e01e170aa62a00.tar.bz2 samba-4a1b50afd567313cc25d5bbc14e01e170aa62a00.zip |
s3-netlogon: pass down account name to remote password set functions.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index a75904248a..7e31da064f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3307,6 +3307,7 @@ void update_trustdom_cache( void ); NTSTATUS trust_pw_change_and_store_it(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, const char *domain, + const char *account_name, unsigned char orig_trust_passwd_hash[16], uint32 sec_channel_type); NTSTATUS trust_pw_find_change_and_store_it(struct rpc_pipe_client *cli, @@ -5238,6 +5239,7 @@ NTSTATUS rpccli_netlogon_sam_network_logon_ex(struct rpc_pipe_client *cli, struct netr_SamInfo3 **info3); NTSTATUS rpccli_netlogon_set_trust_password(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, + const char *account_name, const unsigned char orig_trust_passwd_hash[16], const char *new_trust_pwd_cleartext, const unsigned char new_trust_passwd_hash[16], |