From: Denis Vlasenko Date: Wed, 27 Feb 2008 20:59:54 +0000 (-0000) Subject: httpd: fix breakage introduced by "support for I:index.xml" X-Git-Tag: 1_10_0~84 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1acb4ef87e8a662e51da8f97c69474d2f0ad70ae;p=oweals%2Fbusybox.git httpd: fix breakage introduced by "support for I:index.xml" --- 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)