aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_unistim.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-02 21:27:53 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-02 21:27:53 +0000
commit2da25c2375d13755ffe7d2e3d9095311d2357e0d (patch)
tree507f4c47c1aefc693554b8df76781b4c44b0f75a /channels/chan_unistim.c
parentca1d54fd32089eedea8f3a12d1109ec362d87f21 (diff)
Keep ast_app_inboxcount API compatible with 1.6.0.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@127609 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_unistim.c')
-rw-r--r--channels/chan_unistim.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/channels/chan_unistim.c b/channels/chan_unistim.c
index f806c1077..50f081d64 100644
--- a/channels/chan_unistim.c
+++ b/channels/chan_unistim.c
@@ -4375,7 +4375,7 @@ static int unistim_sendtext(struct ast_channel *ast, const char *text)
static int unistim_send_mwi_to_peer(struct unistimsession *s, unsigned int tick)
{
struct ast_event *event;
- int new, old, urgent;
+ int new;
char *mailbox, *context;
struct unistim_line *peer = s->device->lines;
@@ -4388,27 +4388,28 @@ static int unistim_send_mwi_to_peer(struct unistimsession *s, unsigned int tick)
AST_EVENT_IE_MAILBOX, AST_EVENT_IE_PLTYPE_STR, mailbox,
AST_EVENT_IE_CONTEXT, AST_EVENT_IE_PLTYPE_STR, context,
AST_EVENT_IE_NEWMSGS, AST_EVENT_IE_PLTYPE_EXISTS,
- AST_EVENT_IE_OLDMSGS, AST_EVENT_IE_PLTYPE_EXISTS,
AST_EVENT_IE_END);
if (event) {
new = ast_event_get_ie_uint(event, AST_EVENT_IE_NEWMSGS);
- old = ast_event_get_ie_uint(event, AST_EVENT_IE_OLDMSGS);
ast_event_destroy(event);
- } else /* Fall back on checking the mailbox directly */
- ast_app_inboxcount(peer->mailbox, &urgent, &new, &old);
+ } else { /* Fall back on checking the mailbox directly */
+ new = ast_app_has_voicemail(peer->mailbox, "INBOX");
+ }
peer->nextmsgcheck = tick + TIMER_MWI;
/* Return now if it's the same thing we told them last time */
- if (((new << 8) | (old)) == peer->lastmsgssent)
+ if (new == peer->lastmsgssent) {
return 0;
+ }
- peer->lastmsgssent = ((new << 8) | (old));
- if (new == 0)
+ peer->lastmsgssent = new;
+ if (new == 0) {
send_led_update(s, 0);
- else
+ } else {
send_led_update(s, 1);
+ }
return 0;
}