diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2012-09-14 15:50:24 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2012-09-14 15:50:24 +0200 |
commit | ba41ecfa176edeb158b4971bcfead764f52bf331 (patch) | |
tree | e74e8e4acb7b18abc52264614ab7e37ad548b095 | |
parent | 1ab6c353635760e8e25bacc13ae0cab2f97f7338 (diff) |
http_negotiate.c: Fxied warning: unused variable 'rc'
-rw-r--r-- | lib/http_negotiate.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c index c03faf94d..92c363d7c 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; |