diff options
author | Graham Leggett <minfrin@apache.org> | 2011-12-17 18:55:32 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2011-12-17 18:55:32 +0100 |
commit | a4a2e8d15ded51b4ab063273b4bdb6304f704ae9 (patch) | |
tree | 6042715639757816d10381e0606dcfdeb8f50022 /modules/debugging | |
parent | RPM: add firehose and mod_firehose to the RPM. (diff) | |
download | apache2-a4a2e8d15ded51b4ab063273b4bdb6304f704ae9.tar.xz apache2-a4a2e8d15ded51b4ab063273b4bdb6304f704ae9.zip |
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.c | 4 |
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 |