Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-27 23:59:54 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-27 23:59:54 +0300
commit1acb4ef87e8a662e51da8f97c69474d2f0ad70ae (patch)
tree56637077c76877107050ed93286150bb170679c8 /networking/httpd.c
parent574f2f43948bb21d6e4187936ba5a5afccba25f6 (diff)
httpd: fix breakage introduced by "support for I:index.xml"
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index de84ccaa2..e9137287c 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -325,6 +325,7 @@ struct globals {
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
bind_addr_or_port = "80"; \
+ index_page = "index.html"; \
file_size = -1; \
} while (0)