aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-03 07:37:30 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-03 07:37:30 +0000
commitb1f950e2b13d972d40be337c5b4737814604d72e (patch)
treef246c3821894bf87dc93ab78f75145591ef40cf2 /apps
parent55126ae685c0c7110a6db49380c55f7d308e3b6a (diff)
Add fast-forward and rewind to voicemail
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@741 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 82150d9ee..0a95e5dd6 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -1471,7 +1471,7 @@ forward_message(struct ast_channel *chan, struct ast_config *cfg, char *dir, int
#define WAITFILE(file) do { \
if (ast_streamfile(chan, file, chan->language)) \
ast_log(LOG_WARNING, "Unable to play message %s\n", file); \
- d = ast_waitstream(chan, AST_DIGIT_ANY); \
+ d = ast_waitstream_fr(chan, AST_DIGIT_ANY, "#", "*"); \
if (!d) { \
repeats = 0; \
goto instructions; \