From: Mark Michelson Date: Tue, 25 Nov 2008 21:49:42 +0000 (+0000) Subject: Make the options for the general and profiles more consistent X-Git-Tag: 1.6.2.0-beta1~772 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d20ab2b07a45234bfc58df6e572b0e1ccc75f31;p=thirdparty%2Fasterisk.git Make the options for the general and profiles more consistent for the "pls_hold_prompt" option. This does not affect any released version of Asterisk, so there is no need to update the CHANGES file for this. (closes issue #13893) Reported by: eliel git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@159250 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index 454a64203a..bce763f29d 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -260,7 +260,7 @@ static void profile_set_param(struct call_followme *f, const char *param, const ast_copy_string(f->norecordingprompt, val, sizeof(f->norecordingprompt)); else if (!strcasecmp(param, "followme-options-prompt") || !strcasecmp(param, "options_prompt")) ast_copy_string(f->optionsprompt, val, sizeof(f->optionsprompt)); - else if (!strcasecmp(param, "followme-pls-hold-prompt") || !strcasecmp(param, "hold_prompt")) + else if (!strcasecmp(param, "followme-pls-hold-prompt") || !strcasecmp(param, "pls_hold_prompt")) ast_copy_string(f->plsholdprompt, val, sizeof(f->plsholdprompt)); else if (!strcasecmp(param, "followme-status-prompt") || !strcasecmp(param, "status_prompt")) ast_copy_string(f->statusprompt, val, sizeof(f->statusprompt));