dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 48888 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r48888 | qwell | 2006-12-22 15:40:20 -0600 (Fri, 22 Dec 2006) | 2 lines

Note to self: Run make before committing...

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48889 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
qwell 2006-12-22 21:40:56 +00:00
parent aca101a1e7
commit dc68093334
1 changed files with 1 additions and 1 deletions

View File

@ -1391,7 +1391,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;
}