You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2011/12/17 18:55:33 UTC

svn commit: r1215537 - /httpd/httpd/trunk/modules/debugging/mod_firehose.c

Author: minfrin
Date: Sat Dec 17 17:55:32 2011
New Revision: 1215537

URL: http://svn.apache.org/viewvc?rev=1215537&view=rev
Log:
Fix the test for APR_HAVE_SYS_SYSLIMITS_H.

Modified:
    httpd/httpd/trunk/modules/debugging/mod_firehose.c

Modified: httpd/httpd/trunk/modules/debugging/mod_firehose.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/debugging/mod_firehose.c?rev=1215537&r1=1215536&r2=1215537&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/debugging/mod_firehose.c (original)
+++ httpd/httpd/trunk/modules/debugging/mod_firehose.c Sat Dec 17 17:55:32 2011
@@ -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