From: Sean Bright Date: Mon, 20 Feb 2012 18:39:22 +0000 (+0000) Subject: Remove spurious warning when 'qualifyfreqnotok' is set successfully. X-Git-Tag: 10.3.0-rc1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6cde9e2c01d5b3006641e75431200b64eef7680;p=thirdparty%2Fasterisk.git Remove spurious warning when 'qualifyfreqnotok' is set successfully. (closes issue ASTERISK-17176) Reported by: John Covert Tested by: Sean Bright Patches: chan_iax2.c.qualifyfreqnotok.patch uploaded by John Covert (license 5512) ........ Merged revisions 355997 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@355998 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 5d8f11fc4c..404ea646f7 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -12700,7 +12700,7 @@ static struct iax2_peer *build_peer(const char *name, struct ast_variable *v, st } else if (!strcasecmp(v->name, "qualifyfreqnotok")) { if (sscanf(v->value, "%30d", &peer->pokefreqnotok) != 1) { ast_log(LOG_WARNING, "Qualification testing frequency of peer '%s' when NOT OK should be a number of milliseconds at line %d of iax.conf\n", peer->name, v->lineno); - } else ast_log(LOG_WARNING, "Set peer->pokefreqnotok to %d\n", peer->pokefreqnotok); + } } else if (!strcasecmp(v->name, "timezone")) { ast_string_field_set(peer, zonetag, v->value); } else if (!strcasecmp(v->name, "adsi")) {