From e2df2466360fc4f52ea5c6721089d7b5619114f2 Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Wed, 9 Feb 2011 20:11:11 +0000 Subject: Allow parkedmusicclass to be settable for non-default parking lots. (closes issue #17946) Reported by: bluecrow76 Patches: asterisk-1.8.0-beta4-multipark-fixes-2010SEP02.diff git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@307231 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- CHANGES | 4 ++++ main/features.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGES b/CHANGES index b3731d651..a5aa0f0c6 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,10 @@ --- Functionality changes from Asterisk 1.8 to Asterisk 1.10 ----------------- ------------------------------------------------------------------------------ +Parking +------- + * parkedmusicclass can now be set for non-default parking lots. + Asterisk Manager Interface -------------------------- * PeerStatus now includes Address and Port. diff --git a/main/features.c b/main/features.c index f9e024850..98bb8c456 100644 --- a/main/features.c +++ b/main/features.c @@ -4701,6 +4701,8 @@ static struct ast_parkinglot *build_parkinglot(char *name, struct ast_variable * } else if (!strcasecmp(confvar->value, "callee")) { parkinglot->parkedcallrecording = AST_FEATURE_FLAG_BYCALLEE; } + } else if (!strcasecmp(confvar->name, "parkedmusicclass")) { + ast_copy_string(parkinglot->mohclass, confvar->value, sizeof(parkinglot->mohclass)); } confvar = confvar->next; } -- cgit v1.2.3