From f2b737cdd6d865176fbd3aa8f774a649a5e70bb3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 26 Apr 2010 17:28:42 +0000 Subject: [PATCH] When doing custom bob builds from a given SVN revision, include the date and time in the About box. [originally from svn r8934] --- version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.c b/version.c index de658677..3fa0c0ef 100644 --- a/version.c +++ b/version.c @@ -25,7 +25,7 @@ char sshver[] = "PuTTY-Release-" STR(RELEASE); #elif defined SVN_REV -char ver[] = "Custom build r" STR(SVN_REV); +char ver[] = "Custom build r" STR(SVN_REV) ", " __DATE__ " " __TIME__; char sshver[] = "PuTTY-Custom-r" STR(SVN_REV); #else -- 2.45.2