summaryrefslogtreecommitdiff
path: root/lang/ruby18/patches/patch-ao
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18/patches/patch-ao')
-rw-r--r--lang/ruby18/patches/patch-ao13
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/ruby18/patches/patch-ao b/lang/ruby18/patches/patch-ao
deleted file mode 100644
index d3e7e71069e..00000000000
--- a/lang/ruby18/patches/patch-ao
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ao,v 1.1 2005/01/23 17:33:19 taca Exp $
-
---- lib/webrick/httpauth.rb.orig 2004-12-18 15:17:33.000000000 +0900
-+++ lib/webrick/httpauth.rb
-@@ -22,7 +22,7 @@ module WEBrick
- user = pass = nil
- if /^Basic\s+(.*)/o =~ req[req_field]
- userpass = $1
-- user, pass = decode64(userpass).split(":", 2)
-+ user, pass = userpass.unpack("m*")[0].split(":", 2)
- end
- if block.call(user, pass)
- req.user = user