From 5f271da0a447a52f21516df7dc44603288f87d3c Mon Sep 17 00:00:00 2001
From: Timo Sirainen <cras@irssi.org>
Date: Sat, 15 Dec 2001 23:39:24 +0000
Subject: [PATCH] Print IRSSI_VERSION_TIME in /VERSION too.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2259 dbcabf3a-b0e7-0310-adc4-f8d773084564
---
 src/fe-common/core/fe-core-commands.c | 4 ++--
 1 file 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);
 	}
 }