1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

irssi --version now prints the IRSSI_VERSION_TIME as well

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2258 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-12-15 23:33:44 +00:00 committed by cras
parent 7bda808395
commit 7d722f6ca3

View File

@ -97,7 +97,8 @@ void fe_core_commands_deinit(void);
static void print_version(void)
{
printf(PACKAGE" " IRSSI_VERSION" (%d)\n", IRSSI_VERSION_DATE);
printf(PACKAGE" " IRSSI_VERSION" (%d %d)\n",
IRSSI_VERSION_DATE, IRSSI_VERSION_TIME);
exit(0);
}