# Moved the location of the "initializing" log message to below the
processing of the command line options.
This commit is contained in:
parent
89ede8cd28
commit
63a7914830
@ -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,
|
* The initialize routine. Basically sets up all the initial stuff (logfile,
|
||||||
* listening socket, config options, etc.) and then sits there and loops
|
* listening socket, config options, etc.) and then sits there and loops
|
||||||
@ -165,8 +165,6 @@ main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
#endif /* HAVE_SETRLIMIT */
|
#endif /* HAVE_SETRLIMIT */
|
||||||
|
|
||||||
log_message(LOG_INFO, "Initializing " PACKAGE " ...");
|
|
||||||
|
|
||||||
/* Default configuration file location */
|
/* Default configuration file location */
|
||||||
config.config_file = DEFAULT_CONF_FILE;
|
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.
|
* Make sure the HTML error pages array is NULL to begin with.
|
||||||
* (FIXME: Should have a better API for all this)
|
* (FIXME: Should have a better API for all this)
|
||||||
|
Loading…
Reference in New Issue
Block a user