]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - version.c
More sensible (and also more idiomatic) bounds checking on esc_args.
[PuTTY.git] / version.c
index da7e11ca725590c9d2565d32847b7774c91a9f47..3fa0c0efa063a2afde2269033868906fa125f4e2 100644 (file)
--- a/version.c
+++ b/version.c
@@ -23,6 +23,11 @@ char sshver[] = "PuTTY-Snapshot-" SNAPSHOT_TEXT;
 char ver[] = "Release " STR(RELEASE);
 char sshver[] = "PuTTY-Release-" STR(RELEASE);
 
+#elif defined SVN_REV
+
+char ver[] = "Custom build r" STR(SVN_REV) ", " __DATE__ " " __TIME__;
+char sshver[] = "PuTTY-Custom-r" STR(SVN_REV);
+
 #else
 
 char ver[] = "Unidentified build, " __DATE__ " " __TIME__;