diff options
author | Mukund Sivaraman <muks@banu.com> | 2009-09-15 04:08:26 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2009-09-15 04:08:26 +0530 |
commit | 42d2e10c93aacea89b7e5c23c1487a45788715b3 (patch) | |
tree | eb5cad4753f8e543e66a48fb1a898cb3e6bbea95 | |
parent | 83ebd74d871cc31cb042c40479643c2a34903024 (diff) | |
download | tinyproxy-42d2e10c93aacea89b7e5c23c1487a45788715b3.tar.gz tinyproxy-42d2e10c93aacea89b7e5c23c1487a45788715b3.zip |
Fix constness of stathost
Diffstat (limited to '')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ struct config_s { const char *config_file; unsigned int syslog; /* boolean */ int port; - char *stathost; + const char *stathost; unsigned int godaemon; /* boolean */ unsigned int quit; /* boolean */ char *user; |