fix -X option parsing. noted by Rajeev V. Pillai.

This commit is contained in:
mrg 2018-11-25 07:37:20 +00:00
parent cd8228278f
commit c53bc78857
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bozohttpd.c,v 1.98 2018/11/24 18:38:59 mrg Exp $ */
/* $NetBSD: bozohttpd.c,v 1.99 2018/11/25 07:37:20 mrg Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
@ -109,7 +109,7 @@
#define INDEX_HTML "index.html"
#endif
#ifndef SERVER_SOFTWARE
#define SERVER_SOFTWARE "bozohttpd/20181124"
#define SERVER_SOFTWARE "bozohttpd/20181125"
#endif
#ifndef PUBLIC_HTML
#define PUBLIC_HTML "public_html"

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.21 2018/11/24 02:30:56 mrg Exp $ */
/* $NetBSD: main.c,v 1.22 2018/11/25 07:37:20 mrg Exp $ */
/* $eterna: main.c,v 1.6 2011/11/18 09:21:15 mrg Exp $ */
/* from: eterna: bozohttpd.c,v 1.159 2009/05/23 02:14:30 mrg Exp */
@ -336,10 +336,6 @@ main(int argc, char **argv)
bozo_set_pref(&httpd, &prefs, "enable users", "true");
break;
bozo_set_pref(&httpd, &prefs, "directory indexing",
"true");
break;
case 'V':
bozo_set_pref(&httpd, &prefs, "unknown slash", "true");
break;
@ -352,6 +348,10 @@ main(int argc, char **argv)
if (!have_dirindex)
goto no_dirindex_support;
bozo_set_pref(&httpd, &prefs, "directory indexing",
"true");
break;
case 'x':
bozo_set_pref(&httpd, &prefs, "index.html", optarg);
break;