[svn-commits] jdixon: branch jdixon/chan_usbradio-1.4 r134039 - /team/jdixon/chan_usbradio-...
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Sun Jul 27 21:11:32 CDT 2008
Author: jdixon
Date: Sun Jul 27 21:11:32 2008
New Revision: 134039
URL: http://svn.digium.com/view/asterisk?view=rev&rev=134039
Log:
Fixed type-o in output and placement of statement zeroing seqno
Modified:
team/jdixon/chan_usbradio-1.4/channels/chan_rtpdir.c
Modified: team/jdixon/chan_usbradio-1.4/channels/chan_rtpdir.c
URL: http://svn.digium.com/view/asterisk/team/jdixon/chan_usbradio-1.4/channels/chan_rtpdir.c?view=diff&rev=134039&r1=134038&r2=134039
==============================================================================
--- team/jdixon/chan_usbradio-1.4/channels/chan_rtpdir.c (original)
+++ team/jdixon/chan_usbradio-1.4/channels/chan_rtpdir.c Sun Jul 27 21:11:32 2008
@@ -29,7 +29,7 @@
/*** MODULEINFO
***/
-/* Version 0.5, 07/24/2008
+/* Version 0.6, 07/27/2008
Channel connection for Asterisk to KI4LKF's RtpDir Echolink/IRLP/app_rpt
bridging program for Amateur Radio over VOIP.
@@ -480,8 +480,8 @@
if ((d < -REALLY_WACKY_FRAMES) ||
(d > REALLY_WACKY_FRAMES))
{
+ ast_log(LOG_NOTICE,"Rx seq no waaay off!! exp=%lu, got=%lu\n",p->rxseq,seq);
p->rxseq = 0;
- ast_log(LOG_NOTICE,"Rx seq no waaay off!! exp=%lu, got=%lud\n",p->rxseq,seq);
d = -1;
}
else if (d < 0)
More information about the svn-commits
mailing list