mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Cosmetics: Fix 0x0bdda1 indentation issues
This commit is contained in:
34
apache2/re.c
34
apache2/re.c
@@ -1889,12 +1889,17 @@ static apr_status_t msre_ruleset_process_phase_(msre_ruleset *ruleset, modsec_re
|
||||
}
|
||||
}
|
||||
else if (rc < 0) {
|
||||
const char *id = "", *msg = "";
|
||||
if (rule->actionset) {
|
||||
if (rule->actionset->id) id = rule->actionset->id;
|
||||
if (rule->actionset->msg) msg = rule->actionset->msg;
|
||||
}
|
||||
msr_log(msr, 1, "Rule processing failed (id=%s, msg=%s).", id, msg);
|
||||
const char *id = "";
|
||||
const char *msg = "";
|
||||
if (rule->actionset) {
|
||||
if (rule->actionset->id) {
|
||||
id = rule->actionset->id;
|
||||
}
|
||||
if (rule->actionset->msg) {
|
||||
msg = rule->actionset->msg;
|
||||
}
|
||||
}
|
||||
msr_log(msr, 1, "Rule processing failed (id=%s, msg=%s).", id, msg);
|
||||
|
||||
if (msr->txcfg->reqintercept_oe == 1) {
|
||||
apr_table_clear(msr->matched_vars);
|
||||
@@ -1924,12 +1929,17 @@ static apr_status_t msre_ruleset_process_phase_(msre_ruleset *ruleset, modsec_re
|
||||
}
|
||||
}
|
||||
else {
|
||||
const char *id = "", *msg = "";
|
||||
if (rule->actionset) {
|
||||
if (rule->actionset->id) id = rule->actionset->id;
|
||||
if (rule->actionset->msg) msg = rule->actionset->msg;
|
||||
}
|
||||
msr_log(msr, 1, "Rule processing failed with unknown return code: %d (id=%s, msg=%s).", rc, id, msg);
|
||||
const char *id = "";
|
||||
const char *msg = "";
|
||||
if (rule->actionset) {
|
||||
if (rule->actionset->id) {
|
||||
id = rule->actionset->id;
|
||||
}
|
||||
if (rule->actionset->msg) {
|
||||
msg = rule->actionset->msg;
|
||||
}
|
||||
}
|
||||
msr_log(msr, 1, "Rule processing failed with unknown return code: %d (id=%s, msg=%s).", rc, id, msg);
|
||||
apr_table_clear(msr->matched_vars);
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user