diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 20:59:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 20:59:54 +0000 |
commit | 1acb4ef87e8a662e51da8f97c69474d2f0ad70ae (patch) | |
tree | 56637077c76877107050ed93286150bb170679c8 | |
parent | 574f2f43948bb21d6e4187936ba5a5afccba25f6 (diff) | |
download | busybox-w32-1acb4ef87e8a662e51da8f97c69474d2f0ad70ae.tar.gz busybox-w32-1acb4ef87e8a662e51da8f97c69474d2f0ad70ae.tar.bz2 busybox-w32-1acb4ef87e8a662e51da8f97c69474d2f0ad70ae.zip |
httpd: fix breakage introduced by "support for I:index.xml"
-rw-r--r-- | networking/httpd.c | 1 |
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 { | |||
325 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ | 325 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
326 | USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \ | 326 | USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \ |
327 | bind_addr_or_port = "80"; \ | 327 | bind_addr_or_port = "80"; \ |
328 | index_page = "index.html"; \ | ||
328 | file_size = -1; \ | 329 | file_size = -1; \ |
329 | } while (0) | 330 | } while (0) |
330 | 331 | ||