When doing custom bob builds from a given SVN revision, include the
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 26 Apr 2010 17:28:42 +0000 (17:28 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 26 Apr 2010 17:28:42 +0000 (17:28 +0000)
date and time in the About box.

git-svn-id: svn://svn.tartarus.org/sgt/putty@8934 cda61777-01e9-0310-a592-d414129be87e

version.c

index de65867..3fa0c0e 100644 (file)
--- 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