aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 17:26:38 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 17:26:38 +0000
commit61e685f50d88d00e0d1f3a5e5ce16e72b4247237 (patch)
treeb60b169a36b56b74d6e99c57c12e65fec1951171
parentf9df796c76fbdd72f21110e92b8f90063cfcb07a (diff)
Merged revisions 168497 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r168497 | oej | 2009-01-12 17:31:27 +0100 (MÃ¥n, 12 Jan 2009) | 2 lines Better to use the proper app name ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@168500 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_minivm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_minivm.c b/apps/app_minivm.c
index 78d36fd6d..632edd08f 100644
--- a/apps/app_minivm.c
+++ b/apps/app_minivm.c
@@ -2047,7 +2047,7 @@ static int minivm_accmess_exec(struct ast_channel *chan, void *data)
if(!(vmu = find_account(domain, username, TRUE))) {
/* We could not find user, let's exit */
ast_log(LOG_WARNING, "Could not allocate temporary memory for '%s@%s'\n", username, domain);
- pbx_builtin_setvar_helper(chan, "MVM_NOTIFY_STATUS", "FAILED");
+ pbx_builtin_setvar_helper(chan, "MVM_ACCMESS_STATUS", "FAILED");
return -1;
}
@@ -2078,7 +2078,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, "MVM_NOTIFY_STATUS", "SUCCESS");
+ pbx_builtin_setvar_helper(chan, "MVM_ACCMESS_STATUS", "SUCCESS");
/* Ok, we're ready to rock and roll. Return to dialplan */
return 0;