]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
The logic behind inboxcount's return value was reversed in has_voicemail and message_...
authorMark Michelson <mmichelson@digium.com>
Tue, 7 Aug 2007 19:43:57 +0000 (19:43 +0000)
committerMark Michelson <mmichelson@digium.com>
Tue, 7 Aug 2007 19:43:57 +0000 (19:43 +0000)
(closes issue #10401, reported by st1710, patched by me)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@78450 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index bf2e7cdb6604cea3daf5d21cbc16615435956977..d513295c4fc90626cfedbe3306be8b2419f1945e 100644 (file)
@@ -2488,9 +2488,9 @@ static int has_voicemail(const char *mailbox, const char *folder)
        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)
@@ -2503,9 +2503,9 @@ static int messagecount(const char *context, const char *mailbox, const char *fo
        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