diff options
-rw-r--r-- | src/tinyproxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tinyproxy.c b/src/tinyproxy.c index a702e35..76ff993 100644 --- a/src/tinyproxy.c +++ b/src/tinyproxy.c @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.c,v 1.45 2003-03-13 21:32:33 rjkaes Exp $ +/* $Id: tinyproxy.c,v 1.46 2003-03-17 04:24:19 rjkaes Exp $ * * The initialize routine. Basically sets up all the initial stuff (logfile, * listening socket, config options, etc.) and then sits there and loops @@ -165,8 +165,6 @@ main(int argc, char **argv) } #endif /* HAVE_SETRLIMIT */ - log_message(LOG_INFO, "Initializing " PACKAGE " ..."); - /* Default configuration file location */ config.config_file = DEFAULT_CONF_FILE; @@ -200,6 +198,8 @@ main(int argc, char **argv) } } + log_message(LOG_INFO, "Initializing " PACKAGE " ..."); + /* * Make sure the HTML error pages array is NULL to begin with. * (FIXME: Should have a better API for all this) |