Module Name:    src
Committed By:   leot
Date:           Sat Dec 15 12:52:37 UTC 2018

Modified Files:
        src/libexec/httpd: CHANGES bozohttpd.c

Log Message:
Document last changes and bump version to 20181215

Suggested by <mrg>, thanks! (Possible mistakes are mine though!)


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.106 -r1.107 src/libexec/httpd/bozohttpd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/httpd/CHANGES
diff -u src/libexec/httpd/CHANGES:1.31 src/libexec/httpd/CHANGES:1.32
--- src/libexec/httpd/CHANGES:1.31	Tue Dec  4 02:52:42 2018
+++ src/libexec/httpd/CHANGES	Sat Dec 15 12:52:36 2018
@@ -1,4 +1,12 @@
-$NetBSD: CHANGES,v 1.31 2018/12/04 02:52:42 mrg Exp $
+$NetBSD: CHANGES,v 1.32 2018/12/15 12:52:36 leot Exp $
+
+changes in bozohttpd 20181215:
+	o  avoid .htpasswd exposure to authenticated users.  reported by JP,
+	   from l...@netbsd.org
+	o  avoid possible null dereference when receiving a big request that
+	   timeout.  reported by m...@netbsd.org, from l...@netbsd.org
+	o  fix handling of -T option, from l...@netbsd.org
+	o  cleanups and portability improvements, from m...@netbsd.org
 
 changes in bozohttpd 20181204:
 	o  change directory indexing to use html tables.  from

Index: src/libexec/httpd/bozohttpd.c
diff -u src/libexec/httpd/bozohttpd.c:1.106 src/libexec/httpd/bozohttpd.c:1.107
--- src/libexec/httpd/bozohttpd.c:1.106	Sat Dec 15 12:43:24 2018
+++ src/libexec/httpd/bozohttpd.c	Sat Dec 15 12:52:36 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: bozohttpd.c,v 1.106 2018/12/15 12:43:24 leot Exp $	*/
+/*	$NetBSD: bozohttpd.c,v 1.107 2018/12/15 12:52:36 leot 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/20181125"
+#define SERVER_SOFTWARE		"bozohttpd/20181215"
 #endif
 #ifndef PUBLIC_HTML
 #define PUBLIC_HTML		"public_html"

Reply via email to