From: Olle Johansson Date: Thu, 19 Jan 2006 19:41:06 +0000 (+0000) Subject: Enable "musicclass" setting for sip peers X-Git-Tag: 1.4.0-beta1~2889 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de72ee118b82b0cb12f188a420fadd8512283f1e;p=thirdparty%2Fasterisk.git Enable "musicclass" setting for sip peers git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8282 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index c95279f782..fd78084b1f 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -12225,7 +12225,7 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, int } } else if (!strcasecmp(v->name, "accountcode")) { ast_copy_string(peer->accountcode, v->value, sizeof(peer->accountcode)); - } else if (!strcasecmp(v->name, "musiconhold")) { + } else if (!strcasecmp(v->name, "musicclass") || !strcasecmp(v->name, "musiconhold")) { ast_copy_string(peer->musicclass, v->value, sizeof(peer->musicclass)); } else if (!strcasecmp(v->name, "mailbox")) { ast_copy_string(peer->mailbox, v->value, sizeof(peer->mailbox));