* bsd_log.cc (_vpanic): LOG_EMERG is overkill, use LOG_CRIT.

This commit is contained in:
Corinna Vinschen 2005-11-10 10:50:46 +00:00
parent 11b2d6cf16
commit 8032f81502
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-11-10 Corinna Vinschen <corinna@vinschen.de>
* bsd_log.cc (_vpanic): LOG_EMERG is overkill, use LOG_CRIT.
2005-08-08 Christopher Faylor <cgf@timesys.com>
* cygserver.cc (main): Call wincap.init() earlier to avoid a NULL

View File

@ -81,7 +81,7 @@ _log (const char *file, int line, int level, const char *fmt, ...)
void
_vpanic (const char *file, int line, const char *fmt, va_list ap)
{
_vlog (file, line, LOG_EMERG, fmt, ap);
_vlog (file, line, LOG_CRIT, fmt, ap);
exit (1);
}