From e45c95fa976f185dcdec5135588012ac573dc074 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Sat, 2 Jun 2001 03:10:34 +0000 Subject: LOG_EMERG doesn't exist anymore, so replace it with LOG_CRIT. --- src/tinyproxy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 */ -- cgit v1.2.3