From 31c86ea80f72294d018bf58ce69b7808ea08713b Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Mon, 22 Dec 2008 21:50:21 +0100 Subject: [PATCH] Put libratbox version on startup in a nicer place. --- src/ircd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircd.c b/src/ircd.c index 8adc8ccc2..6a8a3d4c1 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -157,7 +157,6 @@ print_startup(int pid) inotice("now running in %s mode from %s as pid %d ...", !server_state_foreground ? "background" : "foreground", ConfigFileEntry.dpath, pid); - inotice("%s", rb_lib_version()); /* let the parent process know the initialization was successful * -- jilles */ @@ -628,6 +627,7 @@ main(int argc, char *argv[]) if(!server_state_foreground) make_daemon(); inotice("starting %s ...", ircd_version); + inotice("%s", rb_lib_version()); } /* Init the event subsystem */