From: Tilghman Lesher Date: Thu, 8 Jan 2009 21:40:28 +0000 (+0000) Subject: Fix variables to comply with documentation changes X-Git-Tag: 1.6.2.0-beta1~487 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dbe101045e865b6bbaac3e7a6ba01aa58a627dd;p=thirdparty%2Fasterisk.git Fix variables to comply with documentation changes git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@167837 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_minivm.c b/apps/app_minivm.c index 136a4ab873..6054668031 100644 --- a/apps/app_minivm.c +++ b/apps/app_minivm.c @@ -2241,7 +2241,7 @@ static int minivm_accmess_exec(struct ast_channel *chan, void *data) } if (error) { - pbx_builtin_setvar_helper(chan, "MINIVM_ACCMESS_STATUS", "FAILED"); + pbx_builtin_setvar_helper(chan, "MVM_ACCMESS_STATUS", "FAILED"); return -1; } @@ -2254,7 +2254,7 @@ static int minivm_accmess_exec(struct ast_channel *chan, void *data) } if (ast_strlen_zero(domain) || ast_strlen_zero(username)) { ast_log(LOG_ERROR, "Need username@domain as argument. Sorry. Argument 0 %s\n", argv[0]); - pbx_builtin_setvar_helper(chan, "MINIVM_ACCMESS_STATUS", "FAILED"); + pbx_builtin_setvar_helper(chan, "MVM_ACCMESS_STATUS", "FAILED"); return -1; } @@ -2292,7 +2292,7 @@ static int minivm_accmess_exec(struct ast_channel *chan, void *data) if(ast_test_flag(vmu, MVM_ALLOCED)) free_user(vmu); - pbx_builtin_setvar_helper(chan, "MINIVM_NOTIFY_STATUS", "SUCCESS"); + pbx_builtin_setvar_helper(chan, "MVM_NOTIFY_STATUS", "SUCCESS"); /* Ok, we're ready to rock and roll. Return to dialplan */ return 0;