git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-2@7153 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-11-20 23:51:58 +00:00
parent cccb11916f
commit 40a1b60cbd
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
2005-11-20 Russell Bryant <russell@digium.com>
* apps/app_voicemail.c: Correct the use of a mailbox entered by the calling party instead of indicated as an argument to the Voicemail application. (issue #5774)
* apps/app_controlplayback.c: Fix logic in checking for success when jumping to priority n+101.
* apps/app_md5.c: Fix logic in checking for success when jumping to priority n+101.

View File

@@ -5531,7 +5531,8 @@ static int vm_exec(struct ast_channel *chan, void *data)
if (ast_strlen_zero(tmp)) {
LOCAL_USER_REMOVE(u);
return 0;
}
}
argv[0] = ast_strdupa(tmp);
}
res = leave_voicemail(chan, argv[0], &leave_options);