]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 304952 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Mon, 31 Jan 2011 07:25:14 +0000 (07:25 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Mon, 31 Jan 2011 07:25:14 +0000 (07:25 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r304952 | tilghman | 2011-01-31 00:54:45 -0600 (Mon, 31 Jan 2011) | 2 lines

  Fix compilation when ODBC_STORAGE is defined.
........

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

apps/app_voicemail.c

index 0bcd8e82e8e2b0c05d634964d76fbcf151e6626d..12be8153fac8a8c4be9255d07511ce8060ab2865 100644 (file)
@@ -5758,7 +5758,7 @@ leave_vm_out:
        return res;
 }
 
-#ifndef IMAP_STORAGE
+#if !defined(IMAP_STORAGE) && !defined(ODBC_STORAGE)
 static int resequence_mailbox(struct ast_vm_user *vmu, char *dir, int stopcount)
 {
     /* we know the actual number of messages, so stop process when number is hit */
@@ -7478,9 +7478,8 @@ static int open_mailbox(struct vm_state *vms, struct ast_vm_user *vmu, int box)
 
        if (last_msg < -1) {
                return last_msg;
-       } 
 #ifndef ODBC_STORAGE
-       else if (vms->lastmsg != last_msg) {
+       else if (vms->lastmsg != last_msg) {
                ast_log(LOG_NOTICE, "Resequencing mailbox: %s, expected %d but found %d message(s) in box with max threshold of %d.\n", vms->curdir, last_msg + 1, vms->lastmsg + 1, vmu->maxmsg);
         resequence_mailbox(vmu, vms->curdir, count_msg);
 #endif