aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_minivm.c
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 16:55:11 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 16:55:11 +0000
commitd5f2c8ef49f8f7ef878c0ec0f7d6980805e038b5 (patch)
treef51fda9c985848d45d0a4db0e52ab5b72e7568d3 /apps/app_minivm.c
parent72647010938385cbe5a98a85eef6b395682838a6 (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 in the STATUS variable ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@168499 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_minivm.c')
-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 6dc52f2bb..cce2fafb5 100644
--- a/apps/app_minivm.c
+++ b/apps/app_minivm.c
@@ -2024,7 +2024,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, "MINIVM_NOTIFY_STATUS", "FAILED");
+ pbx_builtin_setvar_helper(chan, "MINIVM_ACCMESS_STATUS", "FAILED");
return -1;
}
@@ -2055,7 +2055,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, "MINIVM_ACCMESS_STATUS", "SUCCESS");
/* Ok, we're ready to rock and roll. Return to dialplan */
return 0;