From bc69cfe5a4cf3d308b79c88ff6c325534703fe20 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 21 Oct 2003 03:10:43 +0000 Subject: [PATCH] Minor typo fix git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1639 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))