diff options
author | Michael Adam <obnox@samba.org> | 2009-08-12 23:49:46 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-12 23:49:46 +0200 |
commit | 4092c70b063d958e2c3ddb9020bdab60e6e26aa2 (patch) | |
tree | bcbbcd9c3e94b23dd8d98cac2141312315f334f1 | |
parent | 0d585dca8dbfe4df3318c490a1db2bf51c2f285c (diff) | |
download | tinyproxy-4092c70b063d958e2c3ddb9020bdab60e6e26aa2.tar.gz tinyproxy-4092c70b063d958e2c3ddb9020bdab60e6e26aa2.zip |
Fix compiler warnings: make const strings const in process_server_headers().
Michael
Diffstat (limited to '')
-rw-r--r-- | src/reqs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1223,7 +1223,7 @@ PULL_CLIENT_DATA: static int process_server_headers (struct conn_s *connptr) { - static char *skipheaders[] = { + static const char *skipheaders[] = { "keep-alive", "proxy-authenticate", "proxy-authorization", |