[ratbox3 svn r26284 by androsyn] spew the libratbox version info on -version and at startup

This commit is contained in:
Valeriy Yatsko 2008-12-22 12:58:33 +03:00
parent 7ee3cd3a21
commit b0ef251cda
1 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,7 @@ 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 */
@ -598,6 +599,7 @@ main(int argc, char *argv[])
if(printVersion)
{
printf("ircd: version %s(%s)\n", ircd_version, serno);
printf("ircd: %s\n", rb_lib_version());
exit(EXIT_SUCCESS);
}