projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5fe6c8
)
Minor voicemail fixes
author
Mark Spencer
<markster@digium.com>
Sun, 11 May 2003 20:58:53 +0000
(20:58 +0000)
committer
Mark Spencer
<markster@digium.com>
Sun, 11 May 2003 20:58:53 +0000
(20:58 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@996
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_voicemail2.c
patch
|
blob
|
history
diff --git
a/apps/app_voicemail2.c
b/apps/app_voicemail2.c
index
5b9ffcb
..
80c0b40
100755
(executable)
--- a/
apps/app_voicemail2.c
+++ b/
apps/app_voicemail2.c
@@
-824,6
+824,8
@@
static int leave_voicemail(struct ast_channel *chan, char *ext, int silent, int
} else
ast_log(LOG_WARNING, "Error opening text file for output\n");
res = play_and_record(chan, NULL, fn, maxmessage, fmt);
+ if (res > 0)
+ res = 0;
txt = fopen(txtfile, "a");
if (txt) {
time(&end);
@@
-1945,7
+1947,7
@@
static int vm_execmain(struct ast_channel *chan, void *data)
}
logretries++;
}
- if (logretries >= maxlogins) {
+ if (!valid && (logretries >= maxlogins)) {
ast_stopstream(chan);
res = play_and_wait(chan, "vm-goodbye");
if (res > 0)