From 1aabf3303337e1ca23fffc3f75b812aeb5fdeed8 Mon Sep 17 00:00:00 2001 From: oej Date: Thu, 19 Jan 2006 22:41:55 +0000 Subject: Add support for "musicclass" instead of "musiconhold" to make chan_zap compatible with other channels. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@8300 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_zap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'channels/chan_zap.c') diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 705ddf5f9..8db68fed9 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -33,6 +33,8 @@ * \arg \ref Config_zap * * \ingroup channel_drivers + * + * \todo Decprecate the "musiconhold" configuration option in v1.5dev */ #include @@ -10529,7 +10531,7 @@ static int setup_zap(int reload) ast_copy_string(language, v->value, sizeof(language)); } else if (!strcasecmp(v->name, "progzone")) { ast_copy_string(progzone, v->value, sizeof(progzone)); - } else if (!strcasecmp(v->name, "musiconhold")) { + } else if (!strcasecmp(v->name, "musiconhold") || !strcasecmp(v->name, "musicclass")) { ast_copy_string(musicclass, v->value, sizeof(musicclass)); } else if (!strcasecmp(v->name, "stripmsd")) { stripmsd = atoi(v->value); -- cgit v1.2.3