diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 7fd8f941b5..2e8ab70a95 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -5845,7 +5845,7 @@ static struct sip_peer *build_peer(char *name, struct ast_variable *v) } else if (!strcasecmp(v->value, "yes")) { peer->maxms = DEFAULT_MAXMS; } else if (sscanf(v->value, "%d", &peer->maxms) != 1) { - ast_log(LOG_WARNING, "Qualification of peer '%s' should be 'yes', 'no', or a number of milliseconds at line %d of iax.conf\n", peer->name, v->lineno); + ast_log(LOG_WARNING, "Qualification of peer '%s' should be 'yes', 'no', or a number of milliseconds at line %d of sip.conf\n", peer->name, v->lineno); peer->maxms = 0; } } //else if (strcasecmp(v->name,"type"))