1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

When doing custom bob builds from a given SVN revision, include the

date and time in the About box.

[originally from svn r8934]
This commit is contained in:
Simon Tatham 2010-04-26 17:28:42 +00:00
parent ae5f3711f6
commit f2b737cdd6

View File

@ -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