1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

mod_dumpio: follow up to r1818802.

Negate APLOGctrace7(c) test!

Also, return DECLINED when nothing is to be done, same result as OK but
possibly more semantically correct.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1818825 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2017-12-20 16:42:42 +00:00
parent 81465df061
commit 62b423b15f

View File

@@ -181,9 +181,9 @@ static int dumpio_pre_conn(conn_rec *c, void *csd)
{
dumpio_conf_t *ptr;
if (APLOGctrace7(c)) {
if (!APLOGctrace7(c)) {
/* Nothing to do below TRACE7 */
return OK;
return DECLINED;
}
ptr = (dumpio_conf_t *) ap_get_module_config(c->base_server->module_config,