Module Name:    src
Committed By:   mrg
Date:           Fri Jan 26 23:19:44 UTC 2024

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

Log Message:
add some missing changes and bump the version.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.93 -r1.94 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.145 -r1.146 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.54 src/libexec/httpd/CHANGES:1.55
--- src/libexec/httpd/CHANGES:1.54	Wed Nov  2 20:38:21 2022
+++ src/libexec/httpd/CHANGES	Fri Jan 26 23:19:44 2024
@@ -1,4 +1,12 @@
-$NetBSD: CHANGES,v 1.54 2022/11/02 20:38:21 andvar Exp $
+$NetBSD: CHANGES,v 1.55 2024/01/26 23:19:44 mrg Exp $
+
+changes in bozohttpd 20240126:
+	o  add some more default mime types.
+	o  fix memory leaks.  from shm.
+	o  fix reading 2 bytes beyond '%', possibly not mapped.  from shm.
+	o  support openssl 3.  from christos.
+	o  add -q option to not log.  from martin.
+	o  fix default return value of bozo_set_defaults(), PR#54785.
 
 changes in bozohttpd 20220104:
 	o  remove obsolete .bzdirect handling.

Index: src/libexec/httpd/bozohttpd.8
diff -u src/libexec/httpd/bozohttpd.8:1.93 src/libexec/httpd/bozohttpd.8:1.94
--- src/libexec/httpd/bozohttpd.8:1.93	Wed Jun  7 20:22:22 2023
+++ src/libexec/httpd/bozohttpd.8	Fri Jan 26 23:19:44 2024
@@ -1,8 +1,8 @@
-.\"	$NetBSD: bozohttpd.8,v 1.93 2023/06/07 20:22:22 mrg Exp $
+.\"	$NetBSD: bozohttpd.8,v 1.94 2024/01/26 23:19:44 mrg Exp $
 .\"
 .\"	$eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
 .\"
-.\" Copyright (c) 1997-2023 Matthew R. Green
+.\" Copyright (c) 1997-2024 Matthew R. Green
 .\" All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without
@@ -26,7 +26,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd Sep 12, 2023
+.Dd Jan 26, 2024
 .Dt BOZOHTTPD 8
 .Os
 .Sh NAME
@@ -670,7 +670,7 @@ version 20230602.
 .Nm
 was written by
 .An Matthew R. Green
-.Aq Mt m...@eterna.com.au .
+.Aq Mt m...@eterna23.net .
 .Pp
 The large list of contributors includes:
 .Bl -dash
@@ -805,7 +805,7 @@ provided several clean up fixes, and man
 provided various fixes
 .It
 .An Tyler Retzlaff
-.Aq Mt r...@eterna.com.au
+.Aq Mt r...@eterna23.net
 provided SSL support, cgi-bin fixes and much other random other stuff
 .It
 .An rudolf
@@ -860,7 +860,9 @@ There are probably others I have forgott
 Please send all updates to
 .Nm
 to
-.Aq Mt m...@eterna.com.au
+.Aq Mt m...@eterna23.net
+or
+.Aq Mt netbsd-b...@netbsd.org
 for inclusion in future releases.
 .Sh BUGS
 .Nm

Index: src/libexec/httpd/bozohttpd.c
diff -u src/libexec/httpd/bozohttpd.c:1.145 src/libexec/httpd/bozohttpd.c:1.146
--- src/libexec/httpd/bozohttpd.c:1.145	Wed Sep 20 07:13:35 2023
+++ src/libexec/httpd/bozohttpd.c	Fri Jan 26 23:19:44 2024
@@ -1,9 +1,9 @@
-/*	$NetBSD: bozohttpd.c,v 1.145 2023/09/20 07:13:35 shm Exp $	*/
+/*	$NetBSD: bozohttpd.c,v 1.146 2024/01/26 23:19:44 mrg Exp $	*/
 
 /*	$eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $	*/
 
 /*
- * Copyright (c) 1997-2023 Matthew R. Green
+ * Copyright (c) 1997-2024 Matthew R. Green
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -108,7 +108,7 @@
 #define INDEX_HTML		"index.html"
 #endif
 #ifndef SERVER_SOFTWARE
-#define SERVER_SOFTWARE		"bozohttpd/20230602"
+#define SERVER_SOFTWARE		"bozohttpd/20240126"
 #endif
 #ifndef PUBLIC_HTML
 #define PUBLIC_HTML		"public_html"

Reply via email to