diff options
author | Günther Deschner <gd@samba.org> | 2012-12-19 13:53:23 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2014-08-07 16:43:09 +0200 |
commit | 4a5a0427ebca10256a967c176d93e09b089cf28d (patch) | |
tree | 1ee2a6feb8026d68f19b0e44669f93bd8ffbb68c /libcli | |
parent | f1cd12254405460bede46ab0e365c831f35e52b2 (diff) | |
download | samba-4a5a0427ebca10256a967c176d93e09b089cf28d.tar.gz |
libcli/auth: also set secure channel type in netlogon_creds_client_init().
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit a9d5b2fdf03a25e7669258de6c83288be3335cef)
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/auth/credentials.c | 2 | ||||
-rw-r--r-- | libcli/auth/proto.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libcli/auth/credentials.c b/libcli/auth/credentials.c index 7c8d53cf8d..fb77ede197 100644 --- a/libcli/auth/credentials.c +++ b/libcli/auth/credentials.c @@ -263,6 +263,7 @@ next comes the client specific functions struct netlogon_creds_CredentialState *netlogon_creds_client_init(TALLOC_CTX *mem_ctx, const char *client_account, const char *client_computer_name, + uint16_t secure_channel_type, const struct netr_Credential *client_challenge, const struct netr_Credential *server_challenge, const struct samr_Password *machine_password, @@ -277,6 +278,7 @@ struct netlogon_creds_CredentialState *netlogon_creds_client_init(TALLOC_CTX *me creds->sequence = time(NULL); creds->negotiate_flags = negotiate_flags; + creds->secure_channel_type = secure_channel_type; creds->computer_name = talloc_strdup(creds, client_computer_name); if (!creds->computer_name) { diff --git a/libcli/auth/proto.h b/libcli/auth/proto.h index 89a732e052..6bc18d7820 100644 --- a/libcli/auth/proto.h +++ b/libcli/auth/proto.h @@ -26,6 +26,7 @@ next comes the client specific functions struct netlogon_creds_CredentialState *netlogon_creds_client_init(TALLOC_CTX *mem_ctx, const char *client_account, const char *client_computer_name, + uint16_t secure_channel_type, const struct netr_Credential *client_challenge, const struct netr_Credential *server_challenge, const struct samr_Password *machine_password, |