[asterisk-commits] tilghman: branch 1.6.1 r149589 - in /branches/1.6.1: ./ apps/app_echo.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Oct 15 10:31:04 CDT 2008
Author: tilghman
Date: Wed Oct 15 10:31:03 2008
New Revision: 149589
URL: http://svn.digium.com/view/asterisk?view=rev&rev=149589
Log:
Merged revisions 149588 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r149588 | tilghman | 2008-10-15 10:30:21 -0500 (Wed, 15 Oct 2008) | 6 lines
Minor spacing change
(closes issue #13697)
Reported by: alecdavis
Patches:
app_echo.bug13697.103249.diff.txt uploaded by alecdavis (license 585)
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_echo.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_echo.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_echo.c?view=diff&rev=149589&r1=149588&r2=149589
==============================================================================
--- branches/1.6.1/apps/app_echo.c (original)
+++ branches/1.6.1/apps/app_echo.c Wed Oct 15 10:31:03 2008
@@ -54,8 +54,9 @@
while (ast_waitfor(chan, -1) > -1) {
struct ast_frame *f = ast_read(chan);
- if (!f)
+ if (!f) {
break;
+ }
f->delivery.tv_sec = 0;
f->delivery.tv_usec = 0;
if (ast_write(chan, f)) {
More information about the asterisk-commits
mailing list