]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
When doing custom bob builds from a given SVN revision, include the
authorSimon Tatham <anakin@pobox.com>
Mon, 26 Apr 2010 17:28:42 +0000 (17:28 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 26 Apr 2010 17:28:42 +0000 (17:28 +0000)
date and time in the About box.

[originally from svn r8934]

version.c

index de658677b71c9feb18984f5ce19ff8819876356f..3fa0c0efa063a2afde2269033868906fa125f4e2 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