From: Stefan Fritsch Date: Sat, 28 May 2011 05:55:35 +0000 (+0000) Subject: Fix config setting after r1128430 has changed some elements from int to char X-Git-Tag: 2.3.13~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4895498e38c7208449b2da23d6da68453c4034ad;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index c131317a23e..d520785570e 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -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'"),