diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-08-14 18:54:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-08-14 18:54:21 +0200 |
commit | dfb18da5dcdc858636a78887079d87917b0a0f20 (patch) | |
tree | 325172d5495911ed97b6db6275a9e3fe608eb5c0 | |
parent | 0c4ec8033be2d6d6fa774c1e6ec07e4a7d0b6c63 (diff) |
Curl_output_ntlm: remove unused variable
-rw-r--r-- | lib/http_ntlm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 0813839dd..97ea0a7a4 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -461,13 +461,9 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, struct ntlmdata *ntlm; struct auth *authp; - struct SessionHandle *data; - DEBUGASSERT(conn); DEBUGASSERT(conn->data); - data = conn->data; - #ifdef USE_NSS if(CURLE_OK != Curl_nss_force_init(conn->data)) return CURLE_OUT_OF_MEMORY; |