diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-08-27 06:31:28 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-08-27 06:31:28 +0000 |
commit | 8cf0814a143d99de813fbd1653b785252b4c58a6 (patch) | |
tree | ea8aac5e7a720e0a6147c69e7b58cd460c82c14a /lib/http_ntlm.c | |
parent | 523767660c05cf359091694fcaccb763ebb7b2d7 (diff) | |
download | curl-8cf0814a143d99de813fbd1653b785252b4c58a6.tar.gz |
Fixed some minor type mismatches and missing consts mainly found by splint.
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r-- | lib/http_ntlm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index e50ace100..2dda4d069 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -218,8 +218,8 @@ static void print_hex(FILE *handle, const char *buf, size_t len) CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, /* if proxy or not */ - char *header) /* rest of the www-authenticate: - header */ + const char *header) /* rest of the www-authenticate: + header */ { /* point to the correct struct with this */ struct ntlmdata *ntlm; |