From 1a7848d87a89d19925d2ab5acfd0abb63d926dd8 Mon Sep 17 00:00:00 2001 From: Valery V Yatsko Date: Wed, 6 Aug 2008 23:57:45 +0400 Subject: [PATCH] ilog -> inotice in ircd_restart_cb (ircd.c) --- CREDITS | 2 +- TODO | 1 + src/ircd.c | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CREDITS b/CREDITS index 97d1e95e2..8e19badcc 100644 --- a/CREDITS +++ b/CREDITS @@ -7,7 +7,7 @@ network configurations. The charybdis core team is listed in nick-alphabetical order: -dwr, Valery Yatsko +dwr, Valery Yatsko gxti, Michael Tharp jilles, Jilles Tjoelker nenolod, William Pitcock diff --git a/TODO b/TODO index 445d05c28..065879ae2 100644 --- a/TODO +++ b/TODO @@ -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 diff --git a/src/ircd.c b/src/ircd.c index 371d2b4b4..9089ae805 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -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);