Commit b6d5cb40 authored by Christian Stewart's avatar Christian Stewart Committed by Daniel Stenberg
Browse files

build: fix compilation error with CURL_DISABLE_VERBOSE_STRINGS

With curl disable verbose strings in http.c the compilation fails due to
the data variable being undefined later on in the function.

Closes #558
parent 6c2a10e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ output_auth_headers(struct connectdata *conn,
{
  const char *auth = NULL;
  CURLcode result = CURLE_OK;
#if defined(USE_SPNEGO) || !defined(CURL_DISABLE_VERBOSE_STRINGS)
#if defined(USE_SPNEGO)
  struct SessionHandle *data = conn->data;
#endif
#ifdef USE_SPNEGO