]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/lib/libcitadel.h
Ran the releaseversion.sh script to mark everything as version 9.01
[citadel.git] / libcitadel / lib / libcitadel.h
index 3e48a35f390a1e29782eb237c0376ecaa3261b61..aa1f5a141ce34daf71097d324fb1150bd621006c 100644 (file)
@@ -28,7 +28,7 @@
 #include <sys/types.h>
 #include <netinet/in.h>
 
-#define LIBCITADEL_VERSION_NUMBER      829
+#define LIBCITADEL_VERSION_NUMBER      901
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
@@ -108,7 +108,7 @@ typedef enum _room_views {
 #define BLOG_EUIDBUF_SIZE      40
 
 #ifndef IsEmptyStr
-#define IsEmptyStr(a) ((a)[0] == '\0')
+#define IsEmptyStr(a) ( ( (a) == NULL ) || ((a)[0] == '\0') )
 #endif