From 3342b10f29f8ab5627a034ced0e53b6509026176 Mon Sep 17 00:00:00 2001 From: mmichelson Date: Fri, 11 Jul 2008 19:14:15 +0000 Subject: Merged revisions 130173 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r130173 | mmichelson | 2008-07-11 14:13:29 -0500 (Fri, 11 Jul 2008) | 7 lines Fix a typo in audiohook_read_frame_both. While this change has not been proven to fix any specific issue, it is incorrect and could cause unforeseen problems. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@130174 f38db490-d61c-443f-a65b-d21fe96a405b --- main/audiohook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') diff --git a/main/audiohook.c b/main/audiohook.c index 0e75cc6cd..930c75e52 100644 --- a/main/audiohook.c +++ b/main/audiohook.c @@ -207,7 +207,7 @@ static struct ast_frame *audiohook_read_frame_both(struct ast_audiohook *audioho } /* If we want to provide only a write factory make sure we aren't waiting for other audio */ - if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->write_time) < (samples/8)*2)) { + if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->read_time) < (samples/8)*2)) { ast_debug(1, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory); return NULL; } -- cgit v1.2.3