Use the default debug hook if possible

This commit is contained in:
Martin Willi
2009-09-16 13:16:00 +02:00
parent 5289249449
commit b538b606da
6 changed files with 3 additions and 47 deletions
-23
View File
@@ -18,27 +18,6 @@
#include <debug.h>
/**
* Default debug level
*/
int dbg_level = 1;
/**
* Logging to stderr with configurable debug level
*/
void dbg_pki(int level, char *fmt, ...)
{
if (level <= dbg_level)
{
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
va_end(args);
}
}
/**
* Convert a form string to a encoding type
*/
@@ -101,8 +80,6 @@ hash_algorithm_t get_digest(char *name)
*/
int main(int argc, char *argv[])
{
dbg = dbg_pki;
atexit(library_deinit);
if (!library_init(NULL))
{