1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

r7965: Remove the GENSEC password callback structure members, as these are no

longer used.

Andrew Bartlett
(This used to be commit 14be7d95694dd7557af67dc94ee83a983d2f05f6)
This commit is contained in:
Andrew Bartlett 2005-06-28 00:50:40 +00:00 committed by Gerald (Jerry) Carter
parent 65cc3f5d5c
commit 2fb1e179f6
2 changed files with 0 additions and 5 deletions

View File

@ -297,7 +297,6 @@ NTSTATUS gensec_client_start(TALLOC_CTX *mem_ctx,
return status;
}
(*gensec_security)->gensec_role = GENSEC_CLIENT;
(*gensec_security)->password_callback = NULL;
return status;
}

View File

@ -105,8 +105,6 @@ struct gensec_security_ops_wrapper {
#define GENSEC_INTERFACE_VERSION 0
struct gensec_security {
gensec_password_callback password_callback;
void *password_callback_private;
const struct gensec_security_ops *ops;
void *private_data;
struct cli_credentials *credentials;
@ -125,5 +123,3 @@ struct gensec_critical_sizes {
};
/* pre-declare schannel structure for schannel backend */
struct schannel_state;