* citadel.h: changed internal version number to 6.07
authorArt Cancro <ajc@citadel.org>
Mon, 26 May 2003 05:36:25 +0000 (05:36 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 26 May 2003 05:36:25 +0000 (05:36 +0000)
* file_ops.c: #include <ctype.h>
* migratenet.c: #include <ctype.h>

citadel/ChangeLog
citadel/citadel.h
citadel/file_ops.c
citadel/migratenet.c

index e2819bf62ddd92473fe5a39ea4f2e09dd0b65989..c96f4709c6d2cb207eb25914aa3e3ee649c2bf46 100644 (file)
@@ -1,4 +1,9 @@
  $Log$
+ Revision 606.4  2003/05/26 05:36:25  ajc
+ * citadel.h: changed internal version number to 6.07
+ * file_ops.c: #include <ctype.h>
+ * migratenet.c: #include <ctype.h>
+
  Revision 606.3  2003/05/26 05:30:18  ajc
  * serv_calendar.c: fixed a bug in the "ICAL freebusy" subcommand which
    caused it to always fetch the logged in user's freebusy times instead
@@ -4724,3 +4729,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index 8c9afe8356e2cc9d9c6a7804a5a51856a2da5baa..37b5ce430c2948d4e24a3ccc1c7ec7d20121d72f 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 /*
  * Text description of this software
  */
-#define CITADEL        "Citadel/UX 6.06"
+#define CITADEL        "Citadel/UX 6.07"
 
 /*
  * REV_LEVEL is the current version number (multiplied by 100 to avoid having
@@ -41,7 +41,7 @@ extern "C" {
  * are older than REV_MIN, none of the programs will work until the setup
  * program is run again to bring things up to date.
  */
-#define REV_LEVEL      606             /* This version */
+#define REV_LEVEL      607             /* This version */
 #define REV_MIN                591             /* Oldest compatible version */
 
 #define SERVER_TYPE 0  /* zero for stock Citadel/UX; other developers please
index c9ab9b1566eec6060f2976a88a0ff86eecea19af..dd5f2bdbd5d871517034f0e9854e42d3c6af04f2 100644 (file)
@@ -16,6 +16,7 @@
 #include <fcntl.h>
 #include <sys/stat.h>
 #include <errno.h>
+#include <ctype.h>
 #include <string.h>
 #include <sys/stat.h>
 
index df30221d13cb3670ad5b8d6024786b19f37ff0f8..9dc0ba78042ef6fe65f729f1375e468464c6b6f3 100644 (file)
@@ -8,6 +8,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
+#include <ctype.h>
 #include <string.h>
 #include <sys/types.h>
 #include <dirent.h>