Submitted by: Torsten Förtsch <torsten foertsch gmx net>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1090369 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.12
+ *) core: Support module names with colons in loglevel configuration.
+ [Torsten Förtsch <torsten foertsch gmx net>]
+
*) mod_ssl, ab: Support OpenSSL compiled without SSLv2 support.
[Stefan Fritsch]
if (arg == NULL)
return "LogLevel requires level keyword or module loglevel specifier";
- level_str = ap_strchr(arg, ':');
+ level_str = ap_strrchr(arg, ':');
if (level_str == NULL) {
err = ap_parse_log_level(arg, &log->level);