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:
@@ -181,9 +181,9 @@ static int dumpio_pre_conn(conn_rec *c, void *csd)
|
|||||||
{
|
{
|
||||||
dumpio_conf_t *ptr;
|
dumpio_conf_t *ptr;
|
||||||
|
|
||||||
if (APLOGctrace7(c)) {
|
if (!APLOGctrace7(c)) {
|
||||||
/* Nothing to do below TRACE7 */
|
/* Nothing to do below TRACE7 */
|
||||||
return OK;
|
return DECLINED;
|
||||||
}
|
}
|
||||||
|
|
||||||
ptr = (dumpio_conf_t *) ap_get_module_config(c->base_server->module_config,
|
ptr = (dumpio_conf_t *) ap_get_module_config(c->base_server->module_config,
|
||||||
|
Reference in New Issue
Block a user