From 740243552fdf5955859b5f670947b878a3e2fcbb Mon Sep 17 00:00:00 2001
From: Mark Spencer <markster@digium.com>
Date: Sun, 23 May 2004 05:07:43 +0000
Subject: [PATCH] Use find_user for existsmailbox

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3044 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_voicemail.c | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index c0c3d06ec4..c30085ed1c 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3423,7 +3423,8 @@ static int append_mailbox(char *context, char *mbox, char *data)
 
 static int vm_box_exists(struct ast_channel *chan, void *data) {
 	struct localuser *u;
-	struct ast_vm_user *user;
+	struct ast_vm_user *vmu;
+	struct ast_vm_user svm;
 	char *context, *box;
 	int branch=0;
 
@@ -3445,18 +3446,9 @@ static int vm_box_exists(struct ast_channel *chan, void *data) {
 			break;
 		box++;
 	}
-	ast_mutex_lock(&vmlock);
-	user = users;
-	while (user) {
-		if ((!strcmp(box,user->mailbox)) && (!strcmp(context,user->context))) {
-			branch = 1;
-			break;
-		}
-		user = user->next;
-	}
-	ast_mutex_unlock(&vmlock);
+	vmu = find_user(&svm, context, box);
 
-	if (branch) {
+	if (vmu) {
 		if (ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->callerid)) {
 			chan->priority += 100;
 		} else
-- 
GitLab