]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.c
Did away with lprintf all together now its called CtdlLogPrintf()
[citadel.git] / citadel / citadel.c
index 8b643e28b1b02f76f0f22b6c7bc638d0fe9a9ebd..ef8ca61f44498ac6d658b6f4875bfc551681f11f 100644 (file)
@@ -113,13 +113,13 @@ int enable_syslog = 0;
 
 
 /*
- * lprintf()  ...   Write logging information; 
+ * CtdlLogPrintf()  ...   Write logging information; 
  *                  simple here to have the same 
  *                  symbols in the client.
  */
 enum LogLevel {CTDL_EMERG};
 
-void lprintf(enum LogLevel loglevel, const char *format, ...) {   
+void CtdlLogPrintf(enum LogLevel loglevel, const char *format, ...) {   
        va_list arg_ptr;
 
        va_start(arg_ptr, format);