summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-08-09 00:50:22 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-08-09 00:50:22 +0000
commit22e1a6dacc58f31e44b1ec9d4a3f19e55bea3f7b (patch)
tree5be9e031bbcabe1d8cc45bc687724bbfba964e43 /src
parentf84e2a7fe95749eb88db5f1c9def9dce594f6e14 (diff)
downloadirssi-22e1a6dacc58f31e44b1ec9d4a3f19e55bea3f7b.zip
/VERSION command and /SV alias now print the version date too.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1732 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r--src/fe-common/core/fe-core-commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c
index 9c0fbab8..87515f4d 100644
--- a/src/fe-common/core/fe-core-commands.c
+++ b/src/fe-common/core/fe-core-commands.c
@@ -95,7 +95,8 @@ static void cmd_version(char *data)
if (*data == '\0') {
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
- "Client: "PACKAGE" " IRSSI_VERSION);
+ "Client: "PACKAGE" " IRSSI_VERSION
+ " ("IRSSI_VERSION_DATE")");
}
}