Standards-Version: 3.9.6 (no changes)
[ckermit.git] / ckcmai.c
index 26b773a..c245aa2 100644 (file)
--- a/ckcmai.c
+++ b/ckcmai.c
@@ -1,6 +1,6 @@
-#define EDITDATE  "21 Jun 2011"                /* Last edit date dd mmm yyyy */
-#define EDITNDATE "20110621"           /* Keep them in sync */
-/* Tue Jun 21 11:32:48 2011 */
+#define EDITDATE  "20 Aug 2011"                /* Last edit date dd mmm yyyy */
+#define EDITNDATE "20110820"           /* Keep them in sync */
+/* Sat Aug 20 17:20:17 2011 */
 
 /* ckcmai.c - Main program for C-Kermit plus some miscellaneous functions */
 
@@ -40,8 +40,8 @@ char * ck_cryear = "2011";            /* C-Kermit copyright year */
 
 #ifndef BETATEST
 #ifndef OS2                             /* UNIX, VMS, etc... (i.e. C-Kermit) */
-char *ck_s_test = "Beta";              /* "Dev","Alpha","Beta","RC", or "" */
-char *ck_s_tver = "02";                        /* Test version number or "" */
+char *ck_s_test = "";                  /* "Dev","Alpha","Beta","RC", or "" */
+char *ck_s_tver = "";                  /* Test version number or "" */
 #else  /* OS2 */
 char *ck_s_test = "";                  /* (i.e. K95) */
 char *ck_s_tver = "";
@@ -64,11 +64,22 @@ char *ck_s_date = EDITDATE;         /* See top */
 char *buildid = EDITNDATE;             /* See top */
 
 #ifdef UNIX
-static char sccsid[] = "@(#)C-Kermit 9.0.299";
+static char sccsid[] = "@(#)C-Kermit 9.0.302";
 #endif /* UNIX */
 
-char *ck_s_ver = "9.0.299";             /* C-Kermit version string */
-long  ck_l_ver =  900299L;              /* C-Kermit version number */
+/*
+  The C-Kermit Version number is major.minor.edit (integers).
+  Major version always goes up.
+  Minor version is historical, hasn't been used since C-Kermit 7.1.
+  Edit is sequential, always goes up, but there can be gaps.
+  For example there might be many edits between releases.
+  If the major goes to 10, some version-number-based feature tests
+  could fail.  It might be better to use the minor version field
+  for future releases.
+*/
+
+char *ck_s_ver = "9.0.302";             /* C-Kermit version string */
+long  ck_l_ver =  900302L;              /* C-Kermit version number */
 
 #ifdef OS2
 char *ck_s_xver = "3.0.0";             /* Product-specific version string */
@@ -102,7 +113,7 @@ char *ck_s_name = "C-Kermit";
 #endif /* OS2 */
 
 char *ck_s_who = "";                    /* Where customized, "" = not. */
-char *ck_patch = "";                    /* Patch info, if any. */
+char *ck_patch = "1";                    /* Patch info, if any. */
 
 #define CKVERLEN 128
 char versiox[CKVERLEN];                 /* Version string buffer  */
@@ -157,7 +168,7 @@ char *copyright[] = {
 "   the documentation and/or other materials provided with the",
 "   distribution.",
 " ",
-" + Neither the name of the <ORGANIZATION> nor the names of its",
+" + Neither the name of Columbia University nor the names of its",
 "   contributors may be used to endorse or promote products derived",
 "   from this software without specific prior written permission.",
 " ",