From 68ee002ad013208f3818a034135b91ed15724c70 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 29 Oct 2007 18:32:20 +0000 Subject: Made some pointers const --- lib/sendf.c | 4 ++-- lib/sendf.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/sendf.c b/lib/sendf.c index 5aa0e5dac..00b1be657 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -560,7 +560,7 @@ int Curl_read(struct connectdata *conn, /* connection data */ /* return 0 on success */ static int showit(struct SessionHandle *data, curl_infotype type, - char *ptr, size_t size) + const char *ptr, size_t size) { static const char * const s_infotype[CURLINFO_END] = { "* ", "< ", "> ", "{ ", "} ", "{ ", "} " }; @@ -629,7 +629,7 @@ static int showit(struct SessionHandle *data, curl_infotype type, } int Curl_debug(struct SessionHandle *data, curl_infotype type, - char *ptr, size_t size, + const char *ptr, size_t size, struct connectdata *conn) { int rc; diff --git a/lib/sendf.h b/lib/sendf.h index f8808f662..1d7c25643 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -70,7 +70,7 @@ CURLcode Curl_write(struct connectdata *conn, /* the function used to output verbose information */ int Curl_debug(struct SessionHandle *handle, curl_infotype type, - char *data, size_t size, + const char *data, size_t size, struct connectdata *conn); -- cgit v1.2.3