Skip to content
Snippets Groups Projects
Commit 471c3037 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Markus Moeller's change to check for HAVE_SPNEGO instead of the previous

parent f6413f2c
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ int Curl_input_negotiate(struct connectdata *conn, char *header)
return -1;
input_token.length = rawlen;
#ifdef SPNEGO /* Handle SPNEGO */
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
if (checkprefix("Negotiate", header)) {
ASN1_OBJECT * object = NULL;
int rc = 1;
......@@ -257,7 +257,7 @@ CURLcode Curl_output_negotiate(struct connectdata *conn)
char *encoded = NULL;
int len;
#ifdef SPNEGO /* Handle SPNEGO */
#ifdef HAVE_SPNEGO /* Handle SPNEGO */
if (checkprefix("Negotiate",neg_ctx->protocol)) {
ASN1_OBJECT * object = NULL;
int rc = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment