https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r78450 | mmichelson | 2007-08-07 14:43:57 -0500 (Tue, 07 Aug 2007) | 5 lines
The logic behind inboxcount's return value was reversed in has_voicemail and message_count.
(closes issue #10401, reported by st1710, patched by me)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@78451
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
int newmsgs, oldmsgs;
if(inboxcount(mailbox, &newmsgs, &oldmsgs))
- return folder? oldmsgs: newmsgs;
- else
return 0;
+ else
+ return folder? oldmsgs: newmsgs;
}
static int messagecount(const char *context, const char *mailbox, const char *folder)
sprintf(tmp,"%s@%s", mailbox, ast_strlen_zero(context)? "default": context);
if(inboxcount(tmp, &newmsgs, &oldmsgs))
- return folder? oldmsgs: newmsgs;
- else
return 0;
+ else
+ return folder? oldmsgs: newmsgs;
}
#endif