added vsyslog to leak detectives white list

removed debugging hook on openac cleanup
This commit is contained in:
Martin Willi
2007-09-27 06:40:50 +00:00
parent 87d0427def
commit 324abae2ef
4 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -28,7 +28,7 @@
/**
* default dbg function which printf all to stderr
*/
static void dbg_stderr(int level, char *fmt, ...)
void dbg_default(int level, char *fmt, ...)
{
va_list args;
@@ -38,4 +38,4 @@ static void dbg_stderr(int level, char *fmt, ...)
va_end(args);
}
void (*dbg) (int level, char *fmt, ...) = dbg_stderr;
void (*dbg) (int level, char *fmt, ...) = dbg_default;