Hi Some other cleanups.
- Lauri
>From 7891f8b15c021c3087e0c6df33f3e0a8d1eac473 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen <[email protected]> Date: Fri, 8 Jun 2012 15:25:01 +0300 Subject: [PATCH 1/2] http: Remove one signed-unsigned warning Signed-off-by: Lauri Kasanen <[email protected]> --- src/mk_http.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mk_http.c b/src/mk_http.c index dd81b54..2cc4531 100644 --- a/src/mk_http.c +++ b/src/mk_http.c @@ -703,7 +703,7 @@ int mk_http_pending_request(struct client_session *cs) * method has sent the whole information. * just for ref: pipelining is not allowed with POST */ - if (cs->body_pos_end == cs->body_length - mk_endblock.len) { + if ((unsigned int) cs->body_pos_end == cs->body_length - mk_endblock.len) { /* Content-length is required, if is it not found, * we pass as successfull in order to raise the error * later -- 1.7.2.1
_______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
