mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 17:31:46 -05:00
http_negotiate.c: Fxied warning: unused variable 'rc'
This commit is contained in:
parent
1ab6c35363
commit
ba41ecfa17
@ -195,7 +195,6 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|||||||
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
|
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
|
||||||
if(checkprefix("Negotiate", header)) {
|
if(checkprefix("Negotiate", header)) {
|
||||||
ASN1_OBJECT * object = NULL;
|
ASN1_OBJECT * object = NULL;
|
||||||
int rc = 1;
|
|
||||||
unsigned char * spnegoToken = NULL;
|
unsigned char * spnegoToken = NULL;
|
||||||
size_t spnegoTokenLength = 0;
|
size_t spnegoTokenLength = 0;
|
||||||
unsigned char * mechToken = NULL;
|
unsigned char * mechToken = NULL;
|
||||||
@ -280,7 +279,6 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
|
|||||||
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
|
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
|
||||||
if(checkprefix("Negotiate", neg_ctx->protocol)) {
|
if(checkprefix("Negotiate", neg_ctx->protocol)) {
|
||||||
ASN1_OBJECT * object = NULL;
|
ASN1_OBJECT * object = NULL;
|
||||||
int rc = 1;
|
|
||||||
unsigned char * spnegoToken = NULL;
|
unsigned char * spnegoToken = NULL;
|
||||||
size_t spnegoTokenLength = 0;
|
size_t spnegoTokenLength = 0;
|
||||||
unsigned char * responseToken = NULL;
|
unsigned char * responseToken = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user