summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-05-17 13:50:54 +0000
committerJoshua Colp <jcolp@digium.com>2007-05-17 13:50:54 +0000
commit73b2f292bc088759e6ad173721ca111956bac304 (patch)
tree978c9545d64ab4c88bc1e6df7141cb49229fc880
parentd60599c868d96a665e4b5cae27fa52c7f97aca95 (diff)
Merged revisions 64720 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r64720 | file | 2007-05-17 09:48:44 -0400 (Thu, 17 May 2007) | 2 lines Fix authuser support. (issue #9740 reported by xmarksthespot) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@64721 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index e31f74353..c3b961058 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -4814,7 +4814,7 @@ static void imap_mailbox_name(char *spec, struct vm_state *vms, int box, int use
/* Add authentication user if present */
if (!ast_strlen_zero(authuser))
- ast_build_string(&t, &left, "/%s", authuser);
+ ast_build_string(&t, &left, "/authuser=%s", authuser);
/* Add flags if present */
if (!ast_strlen_zero(imapflags))