From 3b94cadaf95975ca7ff90a091ce4e3d3461b218d Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Sun, 28 Feb 2010 20:50:01 +0000 Subject: [PATCH] Fix unit test that Alec Davis broke. (closes issue #16927) Reported by: alecdavis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@249491 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f1bf4b8663..275ee44558 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -2023,7 +2023,7 @@ static int __messagecount(const char *context, const char *mailbox, const char * */ static int messagecount(const char *context, const char *mailbox, const char *folder) { - if (!strcmp(folder, "INBOX")) { + if (ast_strlen_zero(folder) || !strcmp(folder, "INBOX")) { return __messagecount(context, mailbox, "INBOX") + __messagecount(context, mailbox, "Urgent"); } else { return __messagecount(context, mailbox, folder); @@ -5130,6 +5130,9 @@ static int has_voicemail(const char *mailbox, const char *folder) { char tmp[256], *tmp2 = tmp, *box, *context; ast_copy_string(tmp, mailbox, sizeof(tmp)); + if (ast_strlen_zero(folder)) { + folder = "INBOX"; + } while ((box = strsep(&tmp2, ",&"))) { if ((context = strchr(box, '@'))) *context++ = '\0';