From: Graham Leggett Date: Mon, 15 Feb 2010 21:38:09 +0000 (+0000) Subject: Add missing headers, remove unused variable. X-Git-Tag: 2.3.6~470 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fb1906dab67044f37bab2a672bef7d43bf06b50;p=thirdparty%2Fapache%2Fhttpd.git Add missing headers, remove unused variable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910340 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_reflector.c b/modules/filters/mod_reflector.c index 7fe851b4022..e6840f35869 100644 --- a/modules/filters/mod_reflector.c +++ b/modules/filters/mod_reflector.c @@ -13,14 +13,16 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - +#include "apr_strings.h" #include "apr_tables.h" #include "httpd.h" #include "http_config.h" #include "http_core.h" #include "http_log.h" +#include "http_protocol.h" #include "http_request.h" +#include "mod_core.h" module AP_MODULE_DECLARE_DATA reflector_module; @@ -44,7 +46,6 @@ static int header_do(void *dummy, const char *key, const char *value) static int reflector_handler(request_rec * r) { apr_bucket_brigade *bbin, *bbout; - apr_bucket *e; reflector_cfg *conf; apr_status_t status;