]> code.citadel.org Git - citadel.git/blobdiff - citadel/database.c
add newline to cmd_cull
[citadel.git] / citadel / database.c
index 97e6c4cf045aa0f6b45b5ae8afaacf314ebf83e7..1cb54389eeea71a1fce44e718ae97842ad6d0708 100644 (file)
@@ -219,7 +219,7 @@ static void cdb_cull_logs(void)
 void cmd_cull(char *argbuf) {
        if (CtdlAccessCheck(ac_internal)) return;
        cdb_cull_logs();
-       cprintf("%d Database log file cull completed.", CIT_OK);
+       cprintf("%d Database log file cull completed.\n", CIT_OK);
 }
 
 
@@ -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 */
 }