From 4cb6e1284c362aa0eabdb7d4f964390a0a455bd3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 5 Aug 2011 16:22:48 +0200 Subject: s3: Explicitly pass smb_srv_trans_enc_ctx to srv_enc_ctx --- source3/smbd/seal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/smbd') diff --git a/source3/smbd/seal.c b/source3/smbd/seal.c index fa25cadf60..1b9b3b07df 100644 --- a/source3/smbd/seal.c +++ b/source3/smbd/seal.c @@ -46,9 +46,9 @@ struct smb_srv_trans_enc_ctx { Return global enc context - this must change if we ever do multiple contexts. ******************************************************************************/ -static uint16_t srv_enc_ctx(void) +static uint16_t srv_enc_ctx(const struct smb_srv_trans_enc_ctx *ec) { - return srv_trans_enc_ctx->es->enc_ctx_num; + return ec->es->enc_ctx_num; } /****************************************************************************** @@ -73,7 +73,7 @@ bool is_encrypted_packet(const uint8_t *inbuf) } /* Encrypted messages are 0xFF'E' */ - if (srv_trans_enc_ctx && enc_num == srv_enc_ctx()) { + if (srv_trans_enc_ctx && enc_num == srv_enc_ctx(srv_trans_enc_ctx)) { return true; } return false; -- cgit