diff options
Diffstat (limited to 'src/mod_status.c')
-rw-r--r-- | src/mod_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_status.c b/src/mod_status.c index 69c5de5..76061f9 100644 --- a/src/mod_status.c +++ b/src/mod_status.c @@ -487,7 +487,7 @@ static handler_t mod_status_handle_server_status_html(server *srv, connection *c buffer_append_string_len(b, CONST_STR_LEN("</td><td class=\"int\">")); - if (con->request.content_length) { + if (c->request.content_length) { buffer_append_long(b, c->request_content_queue->bytes_in); buffer_append_string_len(b, CONST_STR_LEN("/")); buffer_append_long(b, c->request.content_length); |