Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / version.c
index 7734160..2ed4832 100644 (file)
--- a/version.c
+++ b/version.c
@@ -39,6 +39,11 @@ char sshver[] = "PuTTY-Snapshot-" SNAPSHOT_TEXT;
 char ver[] = "Release " STR(RELEASE);
 char sshver[] = "PuTTY-Release-" STR(RELEASE);
 
+#elif defined PRERELEASE
+
+char ver[] = "Pre-release " STR(PRERELEASE) ":r" STR(SVN_REV);
+char sshver[] = "PuTTY-Prerelease-" STR(PRERELEASE) ":r" STR(SVN_REV);
+
 #elif defined SVN_REV
 
 char ver[] = "Custom build r" STR(SVN_REV) ", " __DATE__ " " __TIME__;