mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +00:00
bug #8076 check option_debug before printing to debug channel.
patch provided in bugnote, with minor changes. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44253 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1239,8 +1239,10 @@ static void aji_handle_presence(struct aji_client *client, ikspak *pak)
|
||||
found->cap = aji_find_version(node, ver, pak);
|
||||
if(gtalk_yuck(pak->x)) /* gtalk should do discover */
|
||||
found->cap->jingle = 1;
|
||||
if(found->cap->jingle && option_debug > 4)
|
||||
ast_log(LOG_DEBUG,"Special case for google till they support discover.\n");
|
||||
if(found->cap->jingle && option_debug > 4) {
|
||||
if (option_debug)
|
||||
ast_log(LOG_DEBUG,"Special case for google till they support discover.\n");
|
||||
}
|
||||
else {
|
||||
iks *iq, *query;
|
||||
iq = iks_new("iq");
|
||||
|
||||
Reference in New Issue
Block a user