]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix config setting after r1128430 has changed some elements from int to char
authorStefan Fritsch <sf@apache.org>
Sat, 28 May 2011 05:55:35 +0000 (05:55 +0000)
committerStefan Fritsch <sf@apache.org>
Sat, 28 May 2011 05:55:35 +0000 (05:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1128557 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index c131317a23ec5dbb9d5a47d51bb1f0d3fe0e8a82..d520785570e29a69cfcc713678ab28dfda6f7753 100644 (file)
@@ -4055,14 +4055,14 @@ static const command_rec includes_cmds[] =
                   "SSI End String Tag"),
     AP_INIT_TAKE1("SSIUndefinedEcho", set_undefined_echo, NULL, OR_ALL,
                   "String to be displayed if an echoed variable is undefined"),
-    AP_INIT_FLAG("SSIAccessEnable", ap_set_flag_slot,
+    AP_INIT_FLAG("SSIAccessEnable", ap_set_flag_slot_char,
                   (void *)APR_OFFSETOF(include_dir_config, accessenable),
                   OR_LIMIT, "Whether testing access is enabled. Limited to 'on' or 'off'"),
-    AP_INIT_FLAG("SSILastModified", ap_set_flag_slot,
+    AP_INIT_FLAG("SSILastModified", ap_set_flag_slot_char,
                   (void *)APR_OFFSETOF(include_dir_config, lastmodified),
                   OR_LIMIT, "Whether to set the last modified header or respect "
                   "an existing header. Limited to 'on' or 'off'"),
-    AP_INIT_FLAG("SSIEtag", ap_set_flag_slot,
+    AP_INIT_FLAG("SSIEtag", ap_set_flag_slot_char,
                   (void *)APR_OFFSETOF(include_dir_config, etag),
                   OR_LIMIT, "Whether to allow the generation of ETags within the server. "
                   "Existing ETags will be preserved. Limited to 'on' or 'off'"),