diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-06-02 03:10:34 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-06-02 03:10:34 +0000 |
commit | e45c95fa976f185dcdec5135588012ac573dc074 (patch) | |
tree | 0560e93590de9f858a9ccbb94bc4740738e493f5 | |
parent | a9720e85f6e47df91622d6b66ee13c45cf0eb060 (diff) | |
download | tinyproxy-e45c95fa976f185dcdec5135588012ac573dc074.tar.gz tinyproxy-e45c95fa976f185dcdec5135588012ac573dc074.zip |
LOG_EMERG doesn't exist anymore, so replace it with LOG_CRIT.
-rw-r--r-- | src/tinyproxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tinyproxy.c b/src/tinyproxy.c index 08f25eb..39982f8 100644 --- a/src/tinyproxy.c +++ b/src/tinyproxy.c @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.c,v 1.9 2001-05-27 02:36:22 rjkaes Exp $ +/* $Id: tinyproxy.c,v 1.10 2001-06-02 03:10:34 rjkaes Exp $ * * The initialise routine. Basically sets up all the initial stuff (logfile, * listening socket, config options, etc.) and then sits there and loops @@ -158,7 +158,7 @@ int main(int argc, char **argv) #ifdef HAVE_SETRLIMIT struct rlimit core_limit = {0, 0}; if (setrlimit(RLIMIT_CORE, &core_limit) < 0) { - log_message(LOG_EMERG, "tinyproxy: could not set the core limit to zero."); + log_message(LOG_CRIT, "tinyproxy: could not set the core limit to zero."); exit(EX_SOFTWARE); } #endif /* HAVE_SETRLIMIT */ |