diff options
author | Timo Sirainen <cras@irssi.org> | 2001-12-15 23:39:24 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-12-15 23:39:24 +0000 |
commit | 5f271da0a447a52f21516df7dc44603288f87d3c (patch) | |
tree | 2acbb1d0d48e350edc8f14d830ce79d45c816549 /src | |
parent | 7d722f6ca3500fa9d9383c75e1bee2202b58a167 (diff) | |
download | irssi-5f271da0a447a52f21516df7dc44603288f87d3c.zip |
Print IRSSI_VERSION_TIME in /VERSION too.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2259 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-common/core/fe-core-commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c index 733d1f1b..fc4993e6 100644 --- a/src/fe-common/core/fe-core-commands.c +++ b/src/fe-common/core/fe-core-commands.c @@ -96,8 +96,8 @@ static void cmd_version(char *data) if (*data == '\0') { printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE, - "Client: "PACKAGE" " IRSSI_VERSION" (%s)", - IRSSI_VERSION_DATE); + "Client: "PACKAGE" " IRSSI_VERSION" (%d %d)", + IRSSI_VERSION_DATE, IRSSI_VERSION_TIME); } } |