let's use the proper variable here, instead of segfaulting (don't know how this worked for anyone at all)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-05-19 22:55:02 +00:00
parent 004885c2fa
commit 429360320d

View File

@@ -2236,7 +2236,7 @@ static int has_voicemail(const char *mailbox, const char *folder)
char tmp[256], *tmp2 = tmp, *mbox, *context;
ast_copy_string(tmp, mailbox, sizeof(tmp));
while ((mbox = strsep(&tmp2, ","))) {
if ((context = strchr(tmp2, '@')))
if ((context = strchr(mbox, '@')))
*context++ = '\0';
else
context = "default";