From: Alexey N. <sn...@gm...> - 2007-04-02 17:18:32
|
Debug is enabled always except when debug_enabled set to FALSE _and_ debug function missing. that is obviously incorrect - it should be _or_. -- Respectfully Alexey Nezhdanov -- diff -ur old/debug.c new/debug.c --- old/debug.c 2007-01-19 07:28:24.000000000 +0300 +++ new/debug.c 2007-04-02 20:17:22.592846000 +0400 @@ -53,7 +53,7 @@ ops = gaim_debug_get_ui_ops(); - if (!debug_enabled && ((ops == NULL) || (ops->print == NULL))) + if (!debug_enabled || ((ops == NULL) || (ops->print == NULL))) return; arg_s = g_strdup_vprintf(format, args); |