[libpri-commits] rmudgett: branch 1.4 r2329 - /branches/1.4/q921.c
SVN commits to the libpri project
libpri-commits at lists.digium.com
Tue Nov 4 16:19:07 CST 2014
Author: rmudgett
Date: Tue Nov 4 16:19:02 2014
New Revision: 2329
URL: http://svnview.digium.com/svn/libpri?view=rev&rev=2329
Log:
q921.c: Send DM and DISC frames with only three data octets instead of an extra fourth octet.
Modified:
branches/1.4/q921.c
Modified: branches/1.4/q921.c
URL: http://svnview.digium.com/svn/libpri/branches/1.4/q921.c?view=diff&rev=2329&r1=2328&r2=2329
==============================================================================
--- branches/1.4/q921.c (original)
+++ branches/1.4/q921.c Tue Nov 4 16:19:02 2014
@@ -313,7 +313,7 @@
if (ctrl->debug & PRI_DEBUG_Q921_STATE) {
pri_message(ctrl, "TEI=%d Sending DM\n", link->tei);
}
- q921_transmit(ctrl, &h, 4);
+ q921_transmit(ctrl, &h, 3);
}
static void q921_send_disc(struct q921_link *link, int pbit)
@@ -342,7 +342,7 @@
if (ctrl->debug & PRI_DEBUG_Q921_STATE) {
pri_message(ctrl, "TEI=%d Sending DISC\n", link->tei);
}
- q921_transmit(ctrl, &h, 4);
+ q921_transmit(ctrl, &h, 3);
}
static void q921_send_ua(struct q921_link *link, int fbit)
More information about the libpri-commits
mailing list