summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 16:40:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 16:40:09 +0000
commit1b2e1d9e88c0d70dab1b4904f033a2506f3cf22f (patch)
tree7fb43a74a17be4ecdb66987646b1f89d90faf732
parentddd57c9a9ad661c22a6b9810ef112563906c8ae6 (diff)
2008-08-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* init.c: Fix missing initializers warning.
-rw-r--r--http/ChangeLog4
-rw-r--r--http/init.c10
2 files changed, 13 insertions, 1 deletions
diff --git a/http/ChangeLog b/http/ChangeLog
index b1333a7..57de512 100644
--- a/http/ChangeLog
+++ b/http/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-21 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * init.c: Fix missing initializers warning.
+
2008-08-20 Joel Sherrill <joel.sherrill@OARcorp.com>
* shttpd_ext.c: Fix warning.
diff --git a/http/init.c b/http/init.c
index dc56e41..607387d 100644
--- a/http/init.c
+++ b/http/init.c
@@ -64,8 +64,16 @@
10, /* FTPD task priority */
1024, /* Maximum buffersize for hooks */
21, /* Well-known port */
- NULL /* List of hooks */
+ NULL, /* List of hooks */
+ NULL, /* Root for FTPD or 0 for / */
+ 0, /* Max. connections */
+ 0, /* Idle timeout in seoconds
+ or 0 for no (inf) timeout */
+ 0, /* 0 - r/w, 1 - read-only,
+ 2 - write-only,
+ 3 - browse-only */
};
+
#else
boolean FTPD_enabled = FALSE;
#endif