summaryrefslogtreecommitdiff
path: root/support/firehose.c
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2012-02-01 09:47:53 +0000
committerRainer Jung <rjung@apache.org>2012-02-01 09:47:53 +0000
commit11ffbb51b5b55a246584efceb79537d65664ac0a (patch)
tree1c3893ab72549e39521a7c82fa4092eba59fa83c /support/firehose.c
parent6464c346441a0ddab05a9575a5fb4cbd8634c03d (diff)
downloadhttpd-11ffbb51b5b55a246584efceb79537d65664ac0a.tar.gz
Minor fixes for firehose and mod_policy:
- err.h does not exist in Solaris. Judging from the expected content of err.h we don't use it at all, so remove inclusion of it. - The name DEFAULT_TYPE is to generic. Use POLICY_DEFAULT_TYPE instead. - Include apr header files from configured path instead of system path. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1239027 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/firehose.c')
-rw-r--r--support/firehose.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/support/firehose.c b/support/firehose.c
index b2340ade70..b59e4188a7 100644
--- a/support/firehose.c
+++ b/support/firehose.c
@@ -19,20 +19,18 @@
*
*/
-#include <err.h>
-#include <apr.h>
-#include <apr.h>
-#include <apr_lib.h>
-#include <apr_buckets.h>
-#include <apr_file_io.h>
-#include <apr_file_info.h>
-#include <apr_hash.h>
-#include <apr_poll.h>
-#include <apr_portable.h>
-#include <apr_getopt.h>
-#include <apr_signal.h>
-#include <apr_strings.h>
-#include <apr_uuid.h>
+#include "apr.h"
+#include "apr_lib.h"
+#include "apr_buckets.h"
+#include "apr_file_io.h"
+#include "apr_file_info.h"
+#include "apr_hash.h"
+#include "apr_poll.h"
+#include "apr_portable.h"
+#include "apr_getopt.h"
+#include "apr_signal.h"
+#include "apr_strings.h"
+#include "apr_uuid.h"
#if APR_HAVE_STDLIB_H
#include <stdlib.h>
#endif