X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilclog.c;h=243ce20e8792902746ebbb0622c39f59c86a278e;hb=4d35af3be05cacf69ca4bd634973cdcd25118e98;hp=24f3ddcee748dabba4de0fbc190fdcd09de08bd5;hpb=e14cef8f772a6f73f05254ae220a3a83981ea753;p=silc.git diff --git a/lib/silcutil/silclog.c b/lib/silcutil/silclog.c index 24f3ddce..243ce20e 100644 --- a/lib/silcutil/silclog.c +++ b/lib/silcutil/silclog.c @@ -22,7 +22,7 @@ #include "silcincludes.h" /* Set TRUE/FALSE to enable/disable debugging */ -int silc_debug; +int silc_debug = FALSE; /* SILC Log name strings. These strings are printed to the log file. */ const SilcLogTypeName silc_log_types[] = @@ -55,22 +55,6 @@ static SilcLogCb fatal_cb = NULL; static SilcDebugCb debug_cb = NULL; static SilcDebugHexdumpCb debug_hexdump_cb = NULL; -/* Formats arguments to a string and returns it after allocating memory - for it. It must be remembered to free it later. */ - -char *silc_log_format(char *fmt, ...) -{ - va_list args; - static char buf[8192]; - - memset(buf, 0, sizeof(buf)); - va_start(args, fmt); - vsnprintf(buf, sizeof(buf) - 1, fmt, args); - va_end(args); - - return strdup(buf); -} - /* Outputs the log message to what ever log file selected. */ void silc_log_output(const char *filename, unsigned int maxsize,