From: Günther Deschner Date: Thu, 23 Oct 2008 09:45:41 +0000 (+0200) Subject: s3-build: fix another build warning with the new ASN1 code. X-Git-Tag: samba-4.0.0alpha6~725 X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=8a3bff343a21bc8b4c229bae5830db7462fea25f s3-build: fix another build warning with the new ASN1 code. Guenther --- diff --git a/source3/libsmb/spnego.c b/source3/libsmb/spnego.c index 72559cdeae2..ee2c3c3d5a7 100644 --- a/source3/libsmb/spnego.c +++ b/source3/libsmb/spnego.c @@ -185,10 +185,13 @@ static bool read_negTokenTarg(ASN1_DATA *asn1, negTokenTarg_t *token) asn1_end_tag(asn1); asn1_end_tag(asn1); break; - case ASN1_CONTEXT(1): + case ASN1_CONTEXT(1): { + const char *mech = NULL; asn1_start_tag(asn1, ASN1_CONTEXT(1)); - asn1_read_OID(asn1, NULL, &token->supportedMech); + asn1_read_OID(asn1, NULL, &mech); asn1_end_tag(asn1); + token->supportedMech = CONST_DISCARD(char *, mech); + } break; case ASN1_CONTEXT(2): asn1_start_tag(asn1, ASN1_CONTEXT(2));