diff options
author | Michael Adam <obnox@samba.org> | 2009-08-12 23:49:16 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-12 23:49:16 +0200 |
commit | 0d585dca8dbfe4df3318c490a1db2bf51c2f285c (patch) | |
tree | d0c6d4c3e49ad19b73da2ef0be7bd49b48b0ccc2 | |
parent | c59d012d114570966e434356fb2a60e09d8cfaf0 (diff) | |
download | tinyproxy-0d585dca8dbfe4df3318c490a1db2bf51c2f285c.tar.gz tinyproxy-0d585dca8dbfe4df3318c490a1db2bf51c2f285c.zip |
Fix compiler warnings: make const strings const in process_client_headers().
Michael
Diffstat (limited to '')
-rw-r--r-- | src/reqs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1107,7 +1107,7 @@ write_via_header (int fd, hashmap_t hashofheaders, static int process_client_headers (struct conn_s *connptr, hashmap_t hashofheaders) { - static char *skipheaders[] = { + static const char *skipheaders[] = { "host", "keep-alive", "proxy-connection", |