mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-10-02 04:27:47 +03:00
Merge pull request #3250 from airween/v2/literalbuildfix
fix: compilation error
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
- name: autogen.sh
|
||||
run: ./autogen.sh
|
||||
- name: configure ${{ matrix.configure.label }}
|
||||
run: ./configure --enable-assertions ${{ matrix.configure.opt }}
|
||||
run: ./configure --enable-assertions ${{ matrix.configure.opt }} 'CFLAGS=-Werror=format-security'
|
||||
- uses: ammaraskar/gcc-problem-matcher@master
|
||||
- name: make
|
||||
run: make -j `nproc`
|
||||
|
@@ -472,8 +472,8 @@ char *update_rule_target_ex(modsec_rec *msr, msre_ruleset *ruleset, msre_rule *r
|
||||
|
||||
end:
|
||||
if (my_error_msg) {
|
||||
if (msr) msr_log(msr, 9, my_error_msg);
|
||||
else ap_log_error(APLOG_MARK, APLOG_INFO, 0, NULL, my_error_msg);
|
||||
if (msr) msr_log(msr, 9, "%s", my_error_msg);
|
||||
else ap_log_error(APLOG_MARK, APLOG_INFO, 0, NULL, "%s", my_error_msg);
|
||||
}
|
||||
if (target_list != NULL) free(target_list);
|
||||
if (replace != NULL) free(replace);
|
||||
|
Reference in New Issue
Block a user