From: Marc Hoersken Date: Fri, 14 Sep 2012 13:50:24 +0000 (+0200) Subject: http_negotiate.c: Fxied warning: unused variable 'rc' X-Git-Tag: curl-7_28_0~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba41ecfa176edeb158b4971bcfead764f52bf331;p=thirdparty%2Fcurl.git http_negotiate.c: Fxied warning: unused variable 'rc' --- diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c index c03faf94d6..92c363d7cd 100644 --- a/lib/http_negotiate.c +++ b/lib/http_negotiate.c @@ -195,7 +195,6 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, #ifdef HAVE_SPNEGO /* Handle SPNEGO */ if(checkprefix("Negotiate", header)) { ASN1_OBJECT * object = NULL; - int rc = 1; unsigned char * spnegoToken = NULL; size_t spnegoTokenLength = 0; unsigned char * mechToken = NULL; @@ -280,7 +279,6 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy) #ifdef HAVE_SPNEGO /* Handle SPNEGO */ if(checkprefix("Negotiate", neg_ctx->protocol)) { ASN1_OBJECT * object = NULL; - int rc = 1; unsigned char * spnegoToken = NULL; size_t spnegoTokenLength = 0; unsigned char * responseToken = NULL;