]> 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:39:22 +0000 (18:39 +0000)
committerSean Bright <sean@malleable.com>
Mon, 20 Feb 2012 18:39:22 +0000 (18:39 +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)
........

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

channels/chan_iax2.c

index 5d8f11fc4c6fcb120fe1167f5a593f170f21bb54..404ea646f716db189ce24dbad9e1002df690f6b9 100644 (file)
@@ -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")) {