From a4a2e8d15ded51b4ab063273b4bdb6304f704ae9 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Sat, 17 Dec 2011 17:55:32 +0000 Subject: [PATCH] Fix the test for APR_HAVE_SYS_SYSLIMITS_H. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1215537 13f79535-47bb-0310-9956-ffa450edef68 --- modules/debugging/mod_firehose.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/debugging/mod_firehose.c b/modules/debugging/mod_firehose.c index da7a28ee21..33450ddb57 100644 --- a/modules/debugging/mod_firehose.c +++ b/modules/debugging/mod_firehose.c @@ -40,10 +40,10 @@ #include "apr_uuid.h" #include "mod_proxy.h" -#ifdef APR_HAVE_SYS_SYSLIMITS_H +#if APR_HAVE_SYS_SYSLIMITS_H #include #endif -#ifdef APR_HAVE_LINUX_LIMITS_H +#if APR_HAVE_LINUX_LIMITS_H #include #endif #if APR_HAVE_FCNTL_H -- 2.40.0