When citserver fails due to missing zlib, refer the user to http://www.citadel.org...
authorArt Cancro <ajc@uncensored.citadel.org>
Fri, 20 May 2011 12:18:37 +0000 (08:18 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:50:39 +0000 (20:50 +0000)
citadel/database.c

index 97e6c4cf045aa0f6b45b5ae8afaacf314ebf83e7..141e74bf75bb1cf3cf2311a3b751b76390f97bf3 100644 (file)
@@ -520,6 +520,7 @@ void cdb_decompress_if_necessary(struct cdbdata *cdb)
        cdb->ptr = uncompressed_data;
 #else                          /* HAVE_ZLIB */
        syslog(LOG_EMERG, "Database contains compressed data, but this citserver was built without compression support.");
+       syslog(LOG_EMERG, "Please see http://www.citadel.org/doku.php/faq:installation:zlib for more information.");
        exit(CTDLEXIT_DB);
 #endif                         /* HAVE_ZLIB */
 }