From: Eliel C. Sardanons Date: Thu, 22 Apr 2010 20:04:23 +0000 (+0000) Subject: Pass interactive = 0 and fix a compile error. X-Git-Tag: 11.0.0-beta1~3134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78edf881d551560648730b2e2c439ed3a1ca1b2e;p=thirdparty%2Fasterisk.git Pass interactive = 0 and fix a compile error. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@258595 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 7fd9a39d08..bed193d9c3 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -10877,7 +10877,7 @@ static void vm_users_data_provider_get_helper(const struct ast_data_search *sear ast_data_add_structure(ast_vm_user, data_user, user); #ifdef IMAP_STORAGE - state = get_vm_state_by_mailbox(user->mailbox, user->context, user->interactive); + state = get_vm_state_by_mailbox(user->mailbox, user->context, 0); #endif AST_LIST_LOCK(&zones);