diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-11-03 10:17:26 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-11-03 10:17:26 +0000 |
commit | 052f24c9b7016bcb5fe3a751efb944928e1fb138 (patch) | |
tree | 3637d58c934aeec6b7b6e599d70ab94e26d2681c /lib/http_negotiate.c | |
parent | bce03fe14452da555468616db52003ba05c0e288 (diff) | |
download | curl-052f24c9b7016bcb5fe3a751efb944928e1fb138.tar.gz |
http: Post base64 decoding tidy up
Renamed copy_header_value() to Curl_copy_header_value() as this
function is now non static.
Simplified proxy flag in Curl_http_input_auth() when calling
sub-functions.
Removed unnecessary white space removal when using negotiate as it had
been missed in commit cdccb422671aeb.
Diffstat (limited to 'lib/http_negotiate.c')
-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 9b981b332..53df30e09 100644 --- a/lib/http_negotiate.c +++ b/lib/http_negotiate.c @@ -145,8 +145,6 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, const char* protocol; CURLcode error; - while(*header && ISSPACE(*header)) - header++; if(checkprefix("GSS-Negotiate", header)) { protocol = "GSS-Negotiate"; gss = TRUE; |