diff options
author | Michael Adam <obnox@samba.org> | 2009-09-15 02:20:25 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-15 02:25:10 +0200 |
commit | c240ca3bcc99eda05b9a12cb8632666424b9c3f6 (patch) | |
tree | ed8230d7736c6dc4f8918dad5f2af49773732768 /src | |
parent | 93b00446b9b474d561d4f3b25d2215ac7a6ffad4 (diff) | |
download | tinyproxy-c240ca3bcc99eda05b9a12cb8632666424b9c3f6.tar.gz tinyproxy-c240ca3bcc99eda05b9a12cb8632666424b9c3f6.zip |
child: move log messagte in child_main_loop() to a less irritating place.
Michael
Diffstat (limited to '')
-rw-r--r-- | src/child.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/child.c b/src/child.c index 9e8d515..2e455c4 100644 --- a/src/child.c +++ b/src/child.c @@ -418,10 +418,11 @@ void child_main_loop (void) #ifdef FILTER_ENABLE if (config.filter) { + log_message (LOG_NOTICE, + "Re-reading filter file."); filter_destroy (); filter_init (); } - log_message (LOG_NOTICE, "Re-reading filter file."); #endif /* FILTER_ENABLE */ received_sighup = FALSE; |