commit ac96fe5877745791e42a9b5177462d670478c52f from: Alexander Barton date: Thu Aug 25 08:48:43 2005 UTC Changed log level of "Initialization failed" message from ERR to ALERT. commit - a6d1d26a435a29f8a12dfb112bad95ff2d62fa57 commit + ac96fe5877745791e42a9b5177462d670478c52f blob - 20a35dbb0c399539bacb663b609ce42312ec34a4 blob + c5c5196536bbe42c9aebf08a6f9664da3f52c508 --- src/ngircd/ngircd.c +++ src/ngircd/ngircd.c @@ -12,7 +12,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.108 2005/07/31 20:13:08 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.109 2005/08/25 08:48:43 alex Exp $"; /** * @file @@ -262,8 +262,10 @@ main( int argc, const char *argv[] ) Log_Init( ! NGIRCd_NoDaemon ); Conf_Init( ); - if (!NGIRCd_Init( NGIRCd_NoDaemon )) { - Log(LOG_WARNING, "Fatal: Initialization failed"); + /* Initialize the "main program": chroot environment, user and + * group ID, ... */ + if (!NGIRCd_Init(NGIRCd_NoDaemon)) { + Log(LOG_ALERT, "Fatal: Initialization failed"); exit(1); }