[package] uhttpd: support building against openssl instead of cyassl, minor cleanups...
[openwrt.git] / package / uhttpd / src / uhttpd-utils.h
index 3514ce1..769e5b4 100644 (file)
 #include <stdarg.h>
 #include <fcntl.h>
 #include <pwd.h>
-#include <shadow.h>
 #include <sys/stat.h>
 
+#ifdef HAVE_SHADOW
+#include <shadow.h>
+#endif
+
 #define min(x, y) (((x) < (y)) ? (x) : (y))
 #define max(x, y) (((x) > (y)) ? (x) : (y))
 
@@ -49,6 +52,7 @@ struct path_info {
        char *name;
        char *info;
        char *query;
+       int redirected;
        struct stat stat;
 };
 
This page took 0.018852 seconds and 4 git commands to generate.