From 84ad1fe0f385a3f1354396e0065dabd8e8754fa4 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 3 Aug 2006 05:22:19 +0000 Subject: [PATCH] Bug 7648 - Checking wrong count for plurality on new messages for Dutch language git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@38761 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 36ca228bf5..cbb7d67e7f 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -4380,7 +4380,7 @@ static int vm_intro_nl(struct ast_channel *chan,struct vm_state *vms) if (vms->newmessages) { res = say_and_wait(chan, vms->newmessages, chan->language); if (!res) { - if (vms->oldmessages == 1) + if (vms->newmessages == 1) res = ast_play_and_wait(chan, "vm-INBOXs"); else res = ast_play_and_wait(chan, "vm-INBOX"); -- 2.47.2