Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/libexec/httpd belated call version 20210211 after previous m...
details: https://anonhg.NetBSD.org/src/rev/60e69919a84a
branches: trunk
changeset: 1019113:60e69919a84a
user: mrg <mrg%NetBSD.org@localhost>
date: Sat Feb 27 12:36:46 2021 +0000
description:
belated call version 20210211 after previous memory leak fix.
diffstat:
libexec/httpd/CHANGES | 5 +++--
libexec/httpd/bozohttpd.c | 6 +++---
libexec/httpd/bozohttpd.h | 4 ++--
libexec/httpd/cgi-bozo.c | 4 ++--
libexec/httpd/libbozohttpd/libbozohttpd.3 | 4 ++--
libexec/httpd/main.c | 4 ++--
6 files changed, 14 insertions(+), 13 deletions(-)
diffs (99 lines):
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/CHANGES
--- a/libexec/httpd/CHANGES Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/CHANGES Sat Feb 27 12:36:46 2021 +0000
@@ -1,8 +1,9 @@
-$NetBSD: CHANGES,v 1.45 2021/02/11 09:23:55 mrg Exp $
+$NetBSD: CHANGES,v 1.46 2021/02/27 12:36:46 mrg Exp $
-changes in bozohttpd 20210210:
+changes in bozohttpd 20210211:
o fix various NULL derefs from malformed headers. mostly from
<emily@ingalls.rocks>.
+ o fix memory leaks in library interface: add bozo_cleanup().
changes in bozohttpd 20201014:
o also set -D_GNU_SOURCE in Makefile.boot. from
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/bozohttpd.c
--- a/libexec/httpd/bozohttpd.c Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/bozohttpd.c Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/* $NetBSD: bozohttpd.c,v 1.126 2021/02/11 09:57:52 mrg Exp $ */
+/* $NetBSD: bozohttpd.c,v 1.127 2021/02/27 12:36:46 mrg Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
/*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 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/20210210"
+#define SERVER_SOFTWARE "bozohttpd/20210211"
#endif
#ifndef PUBLIC_HTML
#define PUBLIC_HTML "public_html"
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/bozohttpd.h
--- a/libexec/httpd/bozohttpd.h Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/bozohttpd.h Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/* $NetBSD: bozohttpd.h,v 1.67 2021/02/11 09:57:52 mrg Exp $ */
+/* $NetBSD: bozohttpd.h,v 1.68 2021/02/27 12:36:46 mrg Exp $ */
/* $eterna: bozohttpd.h,v 1.39 2011/11/18 09:21:15 mrg Exp $ */
/*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/cgi-bozo.c
--- a/libexec/httpd/cgi-bozo.c Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/cgi-bozo.c Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/* $NetBSD: cgi-bozo.c,v 1.52 2021/02/11 09:23:55 mrg Exp $ */
+/* $NetBSD: cgi-bozo.c,v 1.53 2021/02/27 12:36:46 mrg Exp $ */
/* $eterna: cgi-bozo.c,v 1.40 2011/11/18 09:21:15 mrg Exp $ */
/*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/libbozohttpd/libbozohttpd.3
--- a/libexec/httpd/libbozohttpd/libbozohttpd.3 Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/libbozohttpd/libbozohttpd.3 Sat Feb 27 12:36:46 2021 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: libbozohttpd.3,v 1.5 2021/02/11 09:57:53 mrg Exp $
+.\" $NetBSD: libbozohttpd.3,v 1.6 2021/02/27 12:36:46 mrg Exp $
.\"
.\" $eterna: libbozohttpd.3,v 1.2 2010/05/10 02:48:23 mrg Exp $
.\"
-.\" Copyright (c) 2009 The NetBSD Foundation, Inc.
+.\" Copyright (c) 2009, 2021 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This manual page is derived from software contributed to The
diff -r 6053757812f2 -r 60e69919a84a libexec/httpd/main.c
--- a/libexec/httpd/main.c Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/main.c Sat Feb 27 12:36:46 2021 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: main.c,v 1.26 2021/02/11 09:57:52 mrg Exp $ */
+/* $NetBSD: main.c,v 1.27 2021/02/27 12:36:46 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 */
/*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Home |
Main Index |
Thread Index |
Old Index