Commit d8b4db37 authored by Sergey Lyubka's avatar Sergey Lyubka

Squashed warnings

parent 6bb49c78
...@@ -3327,8 +3327,8 @@ static void handle_put(struct connection *conn, const char *path) { ...@@ -3327,8 +3327,8 @@ static void handle_put(struct connection *conn, const char *path) {
static void forward_put_data(struct connection *conn) { static void forward_put_data(struct connection *conn) {
struct iobuf *io = &conn->ns_conn->recv_iobuf; struct iobuf *io = &conn->ns_conn->recv_iobuf;
int n = conn->cl < io->len ? conn->cl : io->len; // How many bytes to write size_t k = conn->cl < (int64_t) io->len ? conn->cl : io->len; // To write
n = write(conn->endpoint.fd, io->buf, n); // Write them! int n = write(conn->endpoint.fd, io->buf, k); // Write them!
if (n > 0) { if (n > 0) {
iobuf_remove(io, n); iobuf_remove(io, n);
conn->cl -= n; conn->cl -= n;
...@@ -4108,7 +4108,7 @@ static void process_response(struct connection *conn) { ...@@ -4108,7 +4108,7 @@ static void process_response(struct connection *conn) {
if (conn->request_len < 0 || if (conn->request_len < 0 ||
(conn->request_len == 0 && io->len > MAX_REQUEST_SIZE)) { (conn->request_len == 0 && io->len > MAX_REQUEST_SIZE)) {
call_http_client_handler(conn); call_http_client_handler(conn);
} else if (io->len >= conn->cl) { } else if ((int64_t) io->len >= conn->cl) {
call_http_client_handler(conn); call_http_client_handler(conn);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment