summaryrefslogtreecommitdiff
path: root/lang/ruby18/patches/patch-ap
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18/patches/patch-ap')
-rw-r--r--lang/ruby18/patches/patch-ap13
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/ruby18/patches/patch-ap b/lang/ruby18/patches/patch-ap
deleted file mode 100644
index a0f40db0fd9..00000000000
--- a/lang/ruby18/patches/patch-ap
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ap,v 1.1 2005/01/23 17:33:19 taca Exp $
-
---- lib/webrick/httpauth/basicauth.rb.orig 2004-12-18 15:17:33.000000000 +0900
-+++ lib/webrick/httpauth/basicauth.rb
-@@ -34,7 +34,7 @@ module WEBrick
- unless basic_credentials = check_scheme(req)
- challenge(req, res)
- end
-- userid, password = decode64(basic_credentials).split(":", 2)
-+ userid, password = basic_credentials.unpack("m*")[0].split(":", 2)
- password ||= ""
- if userid.empty?
- error("user id was not given.")