summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/autoservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/autoservice.c b/main/autoservice.c
index 740758679..b21d1e701 100644
--- a/main/autoservice.c
+++ b/main/autoservice.c
@@ -116,7 +116,6 @@ static void *autoservice_run(void *ign)
* be queued up or not. */
switch (f->frametype) {
/* Save these frames */
- case AST_FRAME_DTMF_BEGIN:
case AST_FRAME_DTMF_END:
case AST_FRAME_CONTROL:
case AST_FRAME_TEXT:
@@ -126,6 +125,7 @@ static void *autoservice_run(void *ign)
break;
/* Throw these frames away */
+ case AST_FRAME_DTMF_BEGIN:
case AST_FRAME_VOICE:
case AST_FRAME_VIDEO:
case AST_FRAME_NULL: