summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-11-19 23:24:35 +0000
committerMark Michelson <mmichelson@digium.com>2007-11-19 23:24:35 +0000
commitfb3b4f493796c4d1412d3acabd93703e9c092033 (patch)
tree73485470b8cf7b3f3fe3a05fa89b10408995c5ea /channels
parent3cda8388b93fdf0f7f34990a58fb803a7dba35b3 (diff)
Changed the "busy-level" option in sip.conf to "busylevel" to be more parallel
with the SIPPEER() argument of the same name. The deprecation procedure is not being used here since this is a trunk-only option. (closes issue #11307, reported by pj, patched by me) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89441 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 6df7e1d0b..3c2d73b36 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -17811,7 +17811,7 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, str
peer->call_limit = atoi(v->value);
if (peer->call_limit < 0)
peer->call_limit = 0;
- } else if (!strcasecmp(v->name, "busy-level")) {
+ } else if (!strcasecmp(v->name, "busylevel")) {
peer->busy_level = atoi(v->value);
if (peer->busy_level < 0)
peer->busy_level = 0;