aboutsummaryrefslogtreecommitdiffstats
path: root/app.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-01 19:38:06 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-01 19:38:06 +0000
commit6978b11051e5adcdca3896e7b2f04f08d00044cf (patch)
tree307a3af3f267bfd600d2a4e66d2e3d70afc94248 /app.c
parent4579b5ca619ff3b55b3f3f8572c2f45854386e44 (diff)
Voicemail fixes (bug #1758)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3124 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'app.c')
-rwxr-xr-xapp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/app.c b/app.c
index c3686f12f..2f3ac6cd7 100755
--- a/app.c
+++ b/app.c
@@ -459,7 +459,9 @@ int ast_control_streamfile(struct ast_channel *chan, char *file, char *fwd, char
if (chan)
ast_stopstream(chan);
res = ast_waitfordigit(chan, 1000);
- if (res == -1 || strchr(pause, res) || (stop && strchr(stop, res)))
+ if(res == 0)
+ continue;
+ else if(res == -1 || strchr(pause, res) || (stop && strchr(stop, res)))
break;
}
if (res == *pause) {
@@ -470,7 +472,7 @@ int ast_control_streamfile(struct ast_channel *chan, char *file, char *fwd, char
if (res == -1)
break;
- if (stop != NULL && res == *stop) {
+ if (stop && strchr(stop, res)) {
res = 0;
break;
}