Bump the citadel rev number to 733. It got missed in the last release.
authorDave West <davew@uncensored.citadel.org>
Tue, 25 Mar 2008 19:35:14 +0000 (19:35 +0000)
committerDave West <davew@uncensored.citadel.org>
Tue, 25 Mar 2008 19:35:14 +0000 (19:35 +0000)
Bump the EXPORT_REV_MIN to 733 since I added the extra POP3 config
options.

citadel/citadel.h
citadel/threads.c

index c74bef1a6f9d9ca319c3656be3d26911ecc9279a..e34dce4df11fe20a34a748a512a544da498b9691 100644 (file)
@@ -38,9 +38,9 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      732             /* This version */
+#define REV_LEVEL      733             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
-#define EXPORT_REV_MIN 725             /* Oldest compatible export files */
+#define EXPORT_REV_MIN 733             /* Oldest compatible export files */
 #define LIBCITADEL_MIN 109             /* Minimum required version of libcitadel */
 
 #define SERVER_TYPE 0                  /* zero for stock Citadel; other developers please
index c4003b012086dc9eba69cbbdcff3448fb09e5b6d..7af9879e6368acc76d2d2281316d7553c942e917 100644 (file)
@@ -471,7 +471,7 @@ int CtdlThreadCheckStop(void)
        
        state = CT->state;
 
-#ifdef THREADS_USERSIGNALS
+#ifdef THREADS_USESIGNALS
        if (CT->signal)
                CtdlLogPrintf(CTDL_DEBUG, "Thread \"%s\" caught signal %d.\n", CT->name, CT->signal);
 #endif