summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2009-09-15 04:08:26 +0530
committerMukund Sivaraman <muks@banu.com>2009-09-15 04:08:26 +0530
commit42d2e10c93aacea89b7e5c23c1487a45788715b3 (patch)
treeeb5cad4753f8e543e66a48fb1a898cb3e6bbea95 /src
parent83ebd74d871cc31cb042c40479643c2a34903024 (diff)
downloadtinyproxy-42d2e10c93aacea89b7e5c23c1487a45788715b3.tar.gz
tinyproxy-42d2e10c93aacea89b7e5c23c1487a45788715b3.zip
Fix constness of stathost
Diffstat (limited to '')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 0c65fd6..b265d6d 100644
--- a/src/main.h
+++ b/src/main.h
@@ -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;