[svn-commits] qwell: branch 1.4 r48888 -
/branches/1.4/channels/chan_skinny.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri Dec 22 14:40:20 MST 2006
Author: qwell
Date: Fri Dec 22 15:40:20 2006
New Revision: 48888
URL: http://svn.digium.com/view/asterisk?view=rev&rev=48888
Log:
Note to self: Run make before committing...
Modified:
branches/1.4/channels/chan_skinny.c
Modified: branches/1.4/channels/chan_skinny.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_skinny.c?view=diff&rev=48888&r1=48887&r2=48888
==============================================================================
--- branches/1.4/channels/chan_skinny.c (original)
+++ branches/1.4/channels/chan_skinny.c Fri Dec 22 15:40:20 2006
@@ -1395,7 +1395,7 @@
if (skinnydebug)
ast_log(LOG_VERBOSE, "writing packet type %04X (%d bytes) to socket %d\n", letohl(req->e), letohl(req->len)+8, s->fd);
- if (letohl(req->len > SKINNY_MAX_PACKET) || letohl(req->len < 0) {
+ if (letohl(req->len > SKINNY_MAX_PACKET) || letohl(req->len < 0)) {
ast_log(LOG_WARNING, "transmit_response: the length of the request is out of bounds\n");
return -1;
}
More information about the svn-commits
mailing list