summaryrefslogtreecommitdiff
path: root/main/pbx.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-01-13 19:22:13 +0000
committerRussell Bryant <russell@russellbryant.com>2009-01-13 19:22:13 +0000
commitef6ad2b53cd60b14ef03d97f8cb393e2f245551f (patch)
tree15cf3668bbd9a4728dea0a1e537e636f0bda775f /main/pbx.c
parentf19a4fc94119064bbbd359875d0030214226fef6 (diff)
Merged revisions 168561 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r168561 | russell | 2009-01-13 13:13:05 -0600 (Tue, 13 Jan 2009) | 2 lines Revert unnecessary indications API change from rev 122314 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@168562 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 5c1755329..b62314ade 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -8531,7 +8531,7 @@ static int pbx_builtin_waitexten(struct ast_channel *chan, void *data)
} else if (ast_test_flag(&flags, WAITEXTEN_MOH)) {
ast_indicate_data(chan, AST_CONTROL_HOLD, opts[0], strlen(opts[0]));
} else if (ast_test_flag(&flags, WAITEXTEN_DIALTONE)) {
- const struct ind_tone_zone_sound *ts = ast_get_indication_tone(chan->zone, "dial");
+ const struct tone_zone_sound *ts = ast_get_indication_tone(chan->zone, "dial");
if (ts)
ast_playtones_start(chan, 0, ts->data, 0);
else