From: Jeff Peeler Date: Wed, 9 Feb 2011 19:52:12 +0000 (+0000) Subject: Make sure to set parking dial context for non-default parking lots. X-Git-Tag: 1.6.2.18-rc1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36d6bd239665f9e461cbb41e23abae328f231177;p=thirdparty%2Fasterisk.git Make sure to set parking dial context for non-default parking lots. Since parking_con_dial isn't settable, set all parking lots to "park-dial". (closes issue #17946) Reported by: bluecrow76 Patches: asterisk-1.8.0-beta4-multipark-fixes-2010SEP02.diff uploaded by bluecrow76 (license 270) modified by me git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@307227 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/features.c b/main/features.c index f89d5fc5d2..3b3e6bd21e 100644 --- a/main/features.c +++ b/main/features.c @@ -3999,9 +3999,9 @@ static struct ast_parkinglot *build_parkinglot(char *name, struct ast_variable * if (!var) { /* Default parking lot */ ast_copy_string(parkinglot->parking_con, "parkedcalls", sizeof(parkinglot->parking_con)); - ast_copy_string(parkinglot->parking_con_dial, "park-dial", sizeof(parkinglot->parking_con_dial)); ast_copy_string(parkinglot->mohclass, "default", sizeof(parkinglot->mohclass)); } + ast_copy_string(parkinglot->parking_con_dial, "park-dial", sizeof(parkinglot->parking_con_dial)); /* Check for errors */ if (ast_strlen_zero(parkinglot->parking_con)) {