Commit b6f6f867 authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

Fix config setting after r1128430 has changed some elements from int to char


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1128557 13f79535-47bb-0310-9956-ffa450edef68
parent 9ecd8f4c
Loading
Loading
Loading
Loading
+3 −3
Changes for modules/filters/mod_include.c: 3 added lines, 3 removed lines.
Original line number Diff line number Diff line
@@ -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'"),