Adjust one conditional to new style.
Wrap mod_logio directives into a conditional, instead of having them commented out.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@159499
13f79535-47bb-0310-9956-
ffa450edef68
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
- # You need to enable mod_logio.c to use %I and %O
- #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+ <IfModule logio_module>
+ # You need to enable mod_logio.c to use %I and %O
+ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+ </IfModule>
#
# The location and format of the access logfile (Common Logfile Format).
#</Location>
</IfModule>
-<IfModule mod_info.c>
+<IfModule info_module>
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).