diff options
author | Michael Adam <obnox@samba.org> | 2009-12-07 07:55:03 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-12-07 22:33:27 +0100 |
commit | 4b54fc203ffd9fee03a0d0d57932ef929a1876b6 (patch) | |
tree | 1dea85ccd4f63ceb24108779d8d175050878747d | |
parent | ad2f478c46f80b09b59d715b98298c44b00082a6 (diff) | |
download | tinyproxy-4b54fc203ffd9fee03a0d0d57932ef929a1876b6.tar.gz tinyproxy-4b54fc203ffd9fee03a0d0d57932ef929a1876b6.zip |
conf: remove direct use of config from reload_config()
The "conf" argument has to be used.
Michael
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -515,7 +515,7 @@ int reload_config (const char *config_fname, struct config_s *conf, "Only values greater than zero are allowed. " "Therefore setting idle timeout to %u seconds.", MAX_IDLE_TIME); - config.idletimeout = MAX_IDLE_TIME; + conf->idletimeout = MAX_IDLE_TIME; } done: |