summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt O'Gorman <mogorman@digium.com>2006-04-26 19:22:55 +0000
committerMatt O'Gorman <mogorman@digium.com>2006-04-26 19:22:55 +0000
commit367de1a73dae33a4551770756595993df3f314c3 (patch)
tree8033a906511f8aa1d9db2801ec09eda613378cd7
parentd5892657fea8efc15aa57ed2bcea3ab29409497a (diff)
Merged revisions 22596 via svnmerge from
https://svn.digium.com/svn/asterisk/branches/1.2 ........ r22596 | mogorman | 2006-04-26 14:18:55 -0500 (Wed, 26 Apr 2006) | 3 lines do not allow for users to forward voicemail to themselves, patch from 7001 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22597 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_voicemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 659bd27d3..f478e8fb9 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3426,8 +3426,8 @@ static int forward_message(struct ast_channel *chan, char *context, char *dir, i
/* start optimistic */
valid_extensions = 1;
while (s) {
- /* find_user is going to ast_malloc since we have a NULL as first argument */
- if ((receiver = find_user(NULL, context, s))) {
+ /* Don't forward to ourselves. find_user is going to malloc since we have a NULL as first argument */
+ if (strcmp(s,sender->mailbox) && (receiver = find_user(NULL, context, s))) {
AST_LIST_INSERT_HEAD(&extensions, receiver, list);
found++;
} else {