0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

Put libratbox version on startup in a nicer place.

This commit is contained in:
Jilles Tjoelker 2008-12-22 21:50:21 +01:00
parent d2b6b9f308
commit 31c86ea80f

View file

@ -157,7 +157,6 @@ print_startup(int pid)
inotice("now running in %s mode from %s as pid %d ...", inotice("now running in %s mode from %s as pid %d ...",
!server_state_foreground ? "background" : "foreground", !server_state_foreground ? "background" : "foreground",
ConfigFileEntry.dpath, pid); ConfigFileEntry.dpath, pid);
inotice("%s", rb_lib_version());
/* let the parent process know the initialization was successful /* let the parent process know the initialization was successful
* -- jilles */ * -- jilles */
@ -628,6 +627,7 @@ main(int argc, char *argv[])
if(!server_state_foreground) if(!server_state_foreground)
make_daemon(); make_daemon();
inotice("starting %s ...", ircd_version); inotice("starting %s ...", ircd_version);
inotice("%s", rb_lib_version());
} }
/* Init the event subsystem */ /* Init the event subsystem */