From 7b52cd51d5ec1d1ca0b6f1a79d99d7b4f0dd67aa 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 8adc8cc..6a8a3d4 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 */