diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-03-17 04:24:19 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-03-17 04:24:19 +0000 |
commit | 63a79148303aacba6de3d703771fca40413bb4d2 (patch) | |
tree | e76fd76b4aecce74a3a51ced6439012a5bb4ebf5 /src | |
parent | 89ede8cd2834a616418822eb3a6825dd26f9b709 (diff) | |
download | tinyproxy-63a79148303aacba6de3d703771fca40413bb4d2.tar.gz tinyproxy-63a79148303aacba6de3d703771fca40413bb4d2.zip |
# Moved the location of the "initializing" log message to below the
processing of the command line options.
Diffstat (limited to 'src')
-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) |