From: Mark Michelson Date: Tue, 26 Jun 2007 15:50:11 +0000 (+0000) Subject: Merged revisions 71796 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dc12782c7e3635b12c6661dc2415d0d986b6a2e;p=thirdparty%2Fasterisk.git Merged revisions 71796 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r71796 | mmichelson | 2007-06-26 10:47:31 -0500 (Tue, 26 Jun 2007) | 5 lines Fixing bug where the authuser was mistakenly pulled from the mailbox string instead of the IMAP user. (closes issue 10054, reported and patched by jaroth) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@71797 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index e183c0a2e7..386f254d42 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -9217,10 +9217,10 @@ static char *get_user_by_mailbox(char *mailbox, char *buf, size_t len) if (ast_strlen_zero(mailbox)) return NULL; - if (!(start = strstr(mailbox, "user="))) + if (!(start = strstr(mailbox, "/user="))) return NULL; - ast_copy_string(buf, start+5, len); + ast_copy_string(buf, start+6, len); if (!(quote = strchr(buf, '\"'))) { if (!(eol_pnt = strchr(buf, '/')))