summaryrefslogtreecommitdiff
path: root/libexec/httpd
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2015-03-20 18:54:18 +0000
committermrg <mrg@NetBSD.org>2015-03-20 18:54:18 +0000
commitd4bf6ab3ee66a34aeef97ac058443cb084650951 (patch)
tree88e744579424400f9bfa7d22f4e12bba60165aab /libexec/httpd
parentbd1a07769db2ac46154a979e95d11543a5b16de3 (diff)
don't quote /. it doesn't work. this should fix PR#49765.
Diffstat (limited to 'libexec/httpd')
-rw-r--r--libexec/httpd/bozohttpd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/httpd/bozohttpd.c b/libexec/httpd/bozohttpd.c
index 39637edd070..f22c3cc50b3 100644
--- a/libexec/httpd/bozohttpd.c
+++ b/libexec/httpd/bozohttpd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bozohttpd.c,v 1.61 2015/01/27 04:20:23 snj Exp $ */
+/* $NetBSD: bozohttpd.c,v 1.62 2015/03/20 18:54:18 mrg Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
@@ -878,7 +878,6 @@ bozo_escape_rfc3986(bozohttpd_t *httpd, const char *url)
goto encode_it;
switch (*s) {
case ':':
- case '/':
case '?':
case '#':
case '[':