* bsd_log.cc (_vpanic): LOG_EMERG is overkill, use LOG_CRIT.
This commit is contained in:
parent
11b2d6cf16
commit
8032f81502
@ -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>
|
2005-08-08 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* cygserver.cc (main): Call wincap.init() earlier to avoid a NULL
|
* cygserver.cc (main): Call wincap.init() earlier to avoid a NULL
|
||||||
|
@ -81,7 +81,7 @@ _log (const char *file, int line, int level, const char *fmt, ...)
|
|||||||
void
|
void
|
||||||
_vpanic (const char *file, int line, const char *fmt, va_list ap)
|
_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);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user