From 66783cb46ffd2f6c4ab1af91b025d23f23801e06 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Fri, 22 Dec 2006 21:40:20 +0000 Subject: [PATCH] Note to self: Run make before committing... git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@48888 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_skinny.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c index 1de7481c9c..57ec2a5bc9 100644 --- a/channels/chan_skinny.c +++ b/channels/chan_skinny.c @@ -1395,7 +1395,7 @@ static int transmit_response(struct skinnysession *s, struct skinny_req *req) 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; }