aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-22 21:40:20 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-22 21:40:20 +0000
commit637520c9aeeb16cbc6dc481d0a70d05b85b5ba1c (patch)
tree2870025f9c51bc2aedb39b1846314c8a537ab056 /channels
parentf7581a0530fcf5d3e614188e4c34ec57444913fc (diff)
Note to self: Run make before committing...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48888 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_skinny.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index 1de7481c9..57ec2a5bc 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;
}