From 8cf0814a143d99de813fbd1653b785252b4c58a6 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 27 Aug 2007 06:31:28 +0000 Subject: Fixed some minor type mismatches and missing consts mainly found by splint. --- lib/http_digest.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/http_digest.h') diff --git a/lib/http_digest.h b/lib/http_digest.h index 6cf025975..c83cb1e3c 100644 --- a/lib/http_digest.h +++ b/lib/http_digest.h @@ -40,13 +40,13 @@ enum { /* this is for digest header input */ CURLdigest Curl_input_digest(struct connectdata *conn, - bool proxy, char *header); + bool proxy, const char *header); /* this is for creating digest header output */ CURLcode Curl_output_digest(struct connectdata *conn, bool proxy, - unsigned char *request, - unsigned char *uripath); + const unsigned char *request, + const unsigned char *uripath); void Curl_digest_cleanup_one(struct digestdata *dig); #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH) -- cgit v1.2.1