diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-01-12 17:07:41 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-13 04:58:40 +0100 |
commit | 36829cff8f006c52af8d43484f9252f9d1cbd745 (patch) | |
tree | da9b72f889cea6236b13f8feb77fd554cb7644ec /source4/auth | |
parent | 339d5ea4e60c4e649e9f29814c5c93b4c0673c3c (diff) | |
download | samba-36829cff8f006c52af8d43484f9252f9d1cbd745.tar.gz samba-36829cff8f006c52af8d43484f9252f9d1cbd745.tar.bz2 samba-36829cff8f006c52af8d43484f9252f9d1cbd745.zip |
s4:auth/gensec: fix compiler warnings in spnego.c
metze
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/gensec/spnego.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/auth/gensec/spnego.c b/source4/auth/gensec/spnego.c index fa20c45a46..65738092f4 100644 --- a/source4/auth/gensec/spnego.c +++ b/source4/auth/gensec/spnego.c @@ -1150,7 +1150,6 @@ static NTSTATUS gensec_spnego_update_in(struct gensec_security *gensec_security, { struct spnego_state *spnego_state = (struct spnego_state *)gensec_security->private_data; size_t expected; - uint8_t *buf; NTSTATUS status; bool ok; @@ -1239,8 +1238,6 @@ static NTSTATUS gensec_spnego_update_out(struct gensec_security *gensec_security DATA_BLOB *_out) { struct spnego_state *spnego_state = (struct spnego_state *)gensec_security->private_data; - size_t new_length; - uint8_t *buf; DATA_BLOB out = data_blob_null; *_out = data_blob_null; |