summaryrefslogtreecommitdiff
path: root/modules/debugging
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2011-12-17 17:55:32 +0000
committerGraham Leggett <minfrin@apache.org>2011-12-17 17:55:32 +0000
commita4a2e8d15ded51b4ab063273b4bdb6304f704ae9 (patch)
tree6042715639757816d10381e0606dcfdeb8f50022 /modules/debugging
parentf7048947c2863b6db6e8c76552528e0ba974cfc8 (diff)
downloadhttpd-a4a2e8d15ded51b4ab063273b4bdb6304f704ae9.tar.gz
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
Diffstat (limited to 'modules/debugging')
-rw-r--r--modules/debugging/mod_firehose.c4
1 files 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 <sys/syslimits.h>
#endif
-#ifdef APR_HAVE_LINUX_LIMITS_H
+#if APR_HAVE_LINUX_LIMITS_H
#include <linux/limits.h>
#endif
#if APR_HAVE_FCNTL_H