summaryrefslogtreecommitdiff
path: root/src/mod_webdav.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mod_webdav.c')
-rw-r--r--src/mod_webdav.c28
1 files changed, 12 insertions, 16 deletions
diff --git a/src/mod_webdav.c b/src/mod_webdav.c
index 674efa3a..914f191d 100644
--- a/src/mod_webdav.c
+++ b/src/mod_webdav.c
@@ -1,3 +1,15 @@
+#include "base.h"
+#include "log.h"
+#include "buffer.h"
+#include "response.h"
+
+#include "plugin.h"
+
+#include "stream.h"
+#include "stat_cache.h"
+
+#include "sys-mmap.h"
+
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
@@ -11,10 +23,6 @@
#include <unistd.h>
#include <dirent.h>
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
#if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H)
#define USE_PROPPATCH
#include <libxml/tree.h>
@@ -28,18 +36,6 @@
#include <uuid/uuid.h>
#endif
-#include "base.h"
-#include "log.h"
-#include "buffer.h"
-#include "response.h"
-
-#include "plugin.h"
-
-#include "stream.h"
-#include "stat_cache.h"
-
-#include "sys-mmap.h"
-
/**
* this is a webdav for a lighttpd plugin
*