]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - version.c
Fix handle leak in winhandl.c.
[PuTTY.git] / version.c
index 834beec81a3c1f20c91aa033a5aced1665674312..f6086127e662159bfc5e462466bd8e44a4addd4b 100644 (file)
--- a/version.c
+++ b/version.c
@@ -2,19 +2,19 @@
  * PuTTY version numbering
  */
 
-#define STR1(x) #x
-#define STR(x) STR1(x)
-
-#if defined SNAPSHOT
-
-char ver[] = "Development snapshot " STR(SNAPSHOT);
-
-#elif defined RELEASE
-
-char ver[] = "Release " STR(RELEASE);
+/*
+ * The difficult part of deciding what goes in these version strings
+ * is done in Buildscr, and then written into version.h. All we have
+ * to do here is to drop it into variables of the right names.
+ */
 
-#else
+#include "version.h"
 
-char ver[] = "Unidentified build, " __DATE__ " " __TIME__;
+char ver[] = TEXTVER;
+char sshver[] = SSHVER;
 
-#endif
+/*
+ * SSH local version string MUST be under 40 characters. Here's a
+ * compile time assertion to verify this.
+ */
+enum { vorpal_sword = 1 / (sizeof(sshver) <= 40) };