Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
managed
:
project
>
mod_security
> waf-label.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File waf-label.patch of Package mod_security
diff -ruN modsecurity-apache_2.5.12-orig/apache2/msc_logging.c modsecurity-apache_2.5.12/apache2/msc_logging.c --- modsecurity-apache_2.5.12-orig/apache2/msc_logging.c 2010-02-03 18:50:24.000000000 -0500 +++ modsecurity-apache_2.5.12/apache2/msc_logging.c 2010-08-04 19:06:58.000000000 -0400 @@ -346,14 +346,14 @@ /* Try to write everything in one go. */ if (msr->txcfg->component_signatures->nelts == 0) { - text = apr_psprintf(msr->mp, "Producer: %s.\n", MODSEC_MODULE_NAME_FULL); + text = apr_psprintf(msr->mp, "WAF: %s.\n", MODSEC_MODULE_NAME_FULL); sec_auditlog_write(msr, text, strlen(text)); return; } /* Start with the ModSecurity signature. */ - text = apr_psprintf(msr->mp, "Producer: %s", MODSEC_MODULE_NAME_FULL); + text = apr_psprintf(msr->mp, "WAF: %s", MODSEC_MODULE_NAME_FULL); sec_auditlog_write(msr, text, strlen(text));