]> mj.ucw.cz Git - libucw.git/commitdiff
Including <stdarg.h> in lib/lib.h enables us to finally export vlog_msg()
authorMartin Mares <mj@ucw.cz>
Sat, 10 Apr 2004 14:45:19 +0000 (14:45 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 10 Apr 2004 14:45:19 +0000 (14:45 +0000)
which I was missing for several times.

lib/log.c

index 2f6e9fd57ecf05397fe9b936677da7d3112bd09c..381f7257830c453e32b5a28b83cffaae15fdc75b 100644 (file)
--- a/lib/log.c
+++ b/lib/log.c
@@ -58,8 +58,8 @@ log_switch(struct tm *tm)
   log_switching--;
 }
 
-static void
-vlog(unsigned int cat, const char *msg, va_list args)
+void
+vlog_msg(unsigned int cat, const char *msg, va_list args)
 {
   time_t tim = time(NULL);
   struct tm *tm = localtime(&tim);
@@ -112,7 +112,7 @@ log_msg(unsigned int cat, const char *msg, ...)
   va_list args;
 
   va_start(args, msg);
-  vlog(cat, msg, args);
+  vlog_msg(cat, msg, args);
   va_end(args);
 }
 
@@ -122,7 +122,7 @@ die(byte *msg, ...)
   va_list args;
 
   va_start(args, msg);
-  vlog(L_FATAL, msg, args);
+  vlog_msg(L_FATAL, msg, args);
   va_end(args);
 #ifdef DEBUG_DIE_BY_ABORT
   abort();