From b0f4874196b408b0c081474118f8865c1aa33288 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Wed, 22 Mar 2006 22:18:32 +0000 Subject: [PATCH] Fix a minor code issue git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@14276 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 63133a2618..488ddba7bc 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6605,12 +6605,13 @@ static int play_record_review(struct ast_channel *chan, char *playfile, char *re case '3': message_exists = 0; /* Record */ - if (recorded == 1) + if (recorded == 1) { if (option_verbose > 2) ast_verbose(VERBOSE_PREFIX_3 "Re-recording the message\n"); - else + } else { if (option_verbose > 2) ast_verbose(VERBOSE_PREFIX_3 "Recording the message\n"); + } if (recorded && outsidecaller) { cmd = ast_play_and_wait(chan, INTRO); cmd = ast_play_and_wait(chan, "beep");