]> granicus.if.org Git - curl/commitdiff
Reverted the const change--what was I thinking?
authorDan Fandrich <dan@coneharvesters.com>
Mon, 29 Oct 2007 20:57:03 +0000 (20:57 +0000)
committerDan Fandrich <dan@coneharvesters.com>
Mon, 29 Oct 2007 20:57:03 +0000 (20:57 +0000)
lib/sendf.c
lib/sendf.h

index 00b1be657f844e00fa9953e7bea724704fbc152d..5aa0e5dac35d243257a8bfa3475e87bcb0583e61 100644 (file)
@@ -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,
-                  const char *ptr, size_t size)
+                  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,
-               const char *ptr, size_t size,
+               char *ptr, size_t size,
                struct connectdata *conn)
 {
   int rc;
index 1d7c25643122085f8dfd74977fb4b899154321a6..f8808f6627fe4b250644ae02300b58d7e7c032a9 100644 (file)
@@ -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,
-               const char *data, size_t size,
+               char *data, size_t size,
                struct connectdata *conn);