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_negotiate.h | |
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_negotiate.h')
-rw-r--r-- | lib/http_negotiate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_negotiate.h b/lib/http_negotiate.h index ce0d083f9..e0507013f 100644 --- a/lib/http_negotiate.h +++ b/lib/http_negotiate.h @@ -27,7 +27,7 @@ #ifdef HAVE_GSSAPI /* this is for Negotiate header input */ -int Curl_input_negotiate(struct connectdata *conn, char *header); +int Curl_input_negotiate(struct connectdata *conn, const char *header); /* this is for creating Negotiate header output */ CURLcode Curl_output_negotiate(struct connectdata *conn); |