From 57bcbb9c50f0a0252110a1e04a2883b511cd9165 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 2 Aug 2013 15:42:21 +0200 Subject: libcli/auth/schannel: remove unused schannel_position Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- libcli/auth/schannel_sign.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libcli') diff --git a/libcli/auth/schannel_sign.c b/libcli/auth/schannel_sign.c index 88a6e1ec61..9502cba6bb 100644 --- a/libcli/auth/schannel_sign.c +++ b/libcli/auth/schannel_sign.c @@ -24,13 +24,7 @@ #include "../libcli/auth/schannel.h" #include "../lib/crypto/crypto.h" -enum schannel_position { - SCHANNEL_STATE_START = 0, - SCHANNEL_STATE_UPDATE_1 -}; - struct schannel_state { - enum schannel_position state; uint64_t seq_num; bool initiator; struct netlogon_creds_CredentialState *creds; @@ -58,7 +52,6 @@ struct schannel_state *netsec_create_state(TALLOC_CTX *mem_ctx, return NULL; } - state->state = SCHANNEL_STATE_UPDATE_1; state->initiator = initiator; state->seq_num = 0; state->creds = netlogon_creds_copy(state, creds); -- cgit