ilog -> inotice in ircd_restart_cb (ircd.c)

This commit is contained in:
Valery V Yatsko 2008-08-06 23:57:45 +04:00
parent 94c100153c
commit b01b826d26
3 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ network configurations.
The charybdis core team is listed in nick-alphabetical order:
dwr, Valery Yatsko <darkwire -at- sellcenter.ru>
dwr, Valery Yatsko <darkwire -at- ircd-charybdis.ru>
gxti, Michael Tharp <gxti -at- partiallystapled.com>
jilles, Jilles Tjoelker <jilles -at- stack.nl>
nenolod, William Pitcock <nenolod -at- nenolod.net>

1
TODO
View File

@ -29,6 +29,7 @@
[F] make an ability of using bandb instead of .conf files as bans storage
[x] drop non-TS6 (legacy protocol) support
[F] Doxygen code documentation
[?] Patch or core-feature - libguess on-fly any-charset-to-utf8 translation
[/] module engine rework
[/] more beautiful way of adding new channel modes by module
[x] basic functionality

View File

@ -453,7 +453,7 @@ ircd_log_cb(const char *str)
static void
ircd_restart_cb(const char *str)
{
ilog(L_MAIN, "libratbox has called the restart callback: %s", str);
inotice(L_MAIN, "libratbox has called the restart callback: %s", str);
restart(str);
}
@ -474,7 +474,7 @@ ircd_die_cb(const char *str)
inotice("libratbox has called the die callback..aborting: %s", str);
}
else
ilog(L_MAIN, "libratbox has called the die callback..aborting");
inotice(L_MAIN, "libratbox has called the die callback..aborting");
unlink(pidFileName);
exit(EXIT_FAILURE);