]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove spurious warning when 'qualifyfreqnotok' is set successfully.
authorSean Bright <sean@malleable.com>
Mon, 20 Feb 2012 18:38:28 +0000 (18:38 +0000)
committerSean Bright <sean@malleable.com>
Mon, 20 Feb 2012 18:38:28 +0000 (18:38 +0000)
(closes issue ASTERISK-17176)
Reported by: John Covert
Tested by: Sean Bright
Patches:
   chan_iax2.c.qualifyfreqnotok.patch uploaded by John Covert (license 5512)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@355997 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_iax2.c

index 9780d4cfed637f781ddef7a0aab0ee8f7a3e70b2..6107c0e346a73c47d87b0d3dbaf93d5fc36a19a6 100644 (file)
@@ -12578,7 +12578,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")) {