]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 168497 via svnmerge from
authorOlle Johansson <oej@edvina.net>
Mon, 12 Jan 2009 16:55:11 +0000 (16:55 +0000)
committerOlle Johansson <oej@edvina.net>
Mon, 12 Jan 2009 16:55:11 +0000 (16:55 +0000)
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: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@168499 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_minivm.c

index 6dc52f2bbf61de47a3ffefa1140f847c2255e563..cce2fafb5e815ad2a2064b6912fbb82300c7e9a4 100644 (file)
@@ -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;