fix a bug introduced when I merged my frame caching branch. Queue the

translated frame to the spies, *not* the original frame.  Thanks PCadach!


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41389 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-08-30 17:07:07 +00:00
parent 11b5db3d61
commit 1ffff64e66
1 changed files with 1 additions and 1 deletions

View File

@ -1359,7 +1359,7 @@ static void queue_frame_to_spies(struct ast_channel *chan, struct ast_frame *f,
break;
}
}
AST_LIST_INSERT_TAIL(&queue->list, ast_frdup(f), frame_list);
AST_LIST_INSERT_TAIL(&queue->list, ast_frdup(translated_frame), frame_list);
} else {
if (f->subclass != queue->format) {
ast_log(LOG_WARNING, "Spy '%s' on channel '%s' wants format '%s', but frame is '%s', dropping\n",