summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-05-11 15:20:55 +0000
committerMark Spencer <markster@digium.com>2004-05-11 15:20:55 +0000
commite753e1a460aad298d59c38336e0dd467b42f1fe9 (patch)
treeb93cbbb308791abde7d5d1a5c66e08515df7fc8b
parentfb80a4a3978c43c373538cf81f89d182865cbcef (diff)
Don't say "re-recording" on CLI.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2947 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xapps/app_voicemail.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 6842d55ad..fb36366d1 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -4196,8 +4196,11 @@ static int play_record_review(struct ast_channel *chan, char *playfile, char *re
case '3':
message_exists = 0;
/* Record */
- ast_verbose(VERBOSE_PREFIX_3 "Re-recording the message\n");
- if (recorded && outsidecaller) {
+ if (recorded == 1)
+ ast_verbose(VERBOSE_PREFIX_3 "Re-recording the message\n");
+ else
+ ast_verbose(VERBOSE_PREFIX_3 "Recording the message\n");
+ if (recorded && outsidecaller) {
cmd = play_and_wait(chan, INTRO);
cmd = play_and_wait(chan, "beep");
}