Loading CHANGES +6 −0 Original line number Diff line number Diff line Changes with Apache 2.0.18-dev *) mod_log_config: %c connection status incorrectly logged as "-" (non-keepalive) when MaxKeepAliveRequests is set to 0. [Bill Stoddard] *) Get mod_cern_meta working under Windows [Bill Stoddard] *) Create Files, and thus MMAPs, out of the request pool, not the connection pool. This solves a small resource leak that had us Loading modules/loggers/mod_log_config.c +3 −2 Original line number Diff line number Diff line Loading @@ -533,8 +533,9 @@ static const char *log_connection_status(request_rec *r, char *a) if (r->connection->aborted) return "X"; if ((r->connection->keepalive) && ((r->server->keep_alive_max - r->connection->keepalives) > 0)) { if (r->connection->keepalive && (!r->server->keep_alive_max || (r->server->keep_alive_max - r->connection->keepalives) > 0)) { return "+"; } return "-"; Loading Loading
CHANGES +6 −0 Original line number Diff line number Diff line Changes with Apache 2.0.18-dev *) mod_log_config: %c connection status incorrectly logged as "-" (non-keepalive) when MaxKeepAliveRequests is set to 0. [Bill Stoddard] *) Get mod_cern_meta working under Windows [Bill Stoddard] *) Create Files, and thus MMAPs, out of the request pool, not the connection pool. This solves a small resource leak that had us Loading
modules/loggers/mod_log_config.c +3 −2 Original line number Diff line number Diff line Loading @@ -533,8 +533,9 @@ static const char *log_connection_status(request_rec *r, char *a) if (r->connection->aborted) return "X"; if ((r->connection->keepalive) && ((r->server->keep_alive_max - r->connection->keepalives) > 0)) { if (r->connection->keepalive && (!r->server->keep_alive_max || (r->server->keep_alive_max - r->connection->keepalives) > 0)) { return "+"; } return "-"; Loading