From: Russell Bryant Date: Wed, 7 Jun 2006 20:08:29 +0000 (+0000) Subject: fix a typo in an option name in config parsing X-Git-Tag: 1.4.0-beta1~1001 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43b82059a52ee8246957df0f2621eb75793aad85;p=thirdparty%2Fasterisk.git fix a typo in an option name in config parsing git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32884 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_followme.c b/apps/app_followme.c index d0a8d3c082..c133b05cb8 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -234,7 +234,7 @@ static void profile_set_param(struct ast_call_followme *f, const char *param, co ast_copy_string(f->nextindp, val, sizeof(f->nextindp)); } else if (!strcasecmp(param, "call-from-prompt")) { ast_copy_string(f->callfromprompt, val, sizeof(f->callfromprompt)); - } else if (!strcasecmp(param, "followme-recording-prompt")) { + } else if (!strcasecmp(param, "followme-norecording-prompt")) { ast_copy_string(f->norecordingprompt, val, sizeof(f->norecordingprompt)); } else if (!strcasecmp(param, "followme-options-prompt")) { ast_copy_string(f->optionsprompt, val, sizeof(f->optionsprompt));