aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-08-15 11:05:56 +0000
committerChristian Grothoff <christian@grothoff.org>2016-08-15 11:05:56 +0000
commitbd629c51f6ccdacdde67549b457be59b34b05b08 (patch)
treec4f2becdb2ad1d3d46a7015d1ce1d11755bb6bc6
parent7b1a97858136d6b7c4a136ba2b8c6da2b9c73fd7 (diff)
downloadlibmicrohttpd-bd629c51f6ccdacdde67549b457be59b34b05b08.tar.gz
libmicrohttpd-bd629c51f6ccdacdde67549b457be59b34b05b08.zip
-use const, as this may actually point to a const string
-rw-r--r--src/microhttpd/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index dd56de0c..510d56a5 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -613,7 +613,7 @@ struct MHD_Connection
613 * Requested URL (everything after "GET" only). Allocated 613 * Requested URL (everything after "GET" only). Allocated
614 * in pool. 614 * in pool.
615 */ 615 */
616 char *url; 616 const char *url;
617 617
618 /** 618 /**
619 * HTTP version string (i.e. http/1.1). Allocated 619 * HTTP version string (i.e. http/1.1). Allocated