summaryrefslogtreecommitdiff
path: root/lang/ruby18/files
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2004-12-23 20:30:09 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2004-12-23 20:30:09 +0000
commit50db8ccf3a46828394b345550bc31877ef9c28a9 (patch)
treee3d12094ede8e7746b95d8f87e6407521778263e /lang/ruby18/files
parentUpdate MASTER_SITES for 2.3 -> 2.4. (diff)
Update lang/ruby18 to 1.8.2-preview4.
* Please upgrade sysutils/portupgrade prior to this one, or pkgdb(1) may coredump with a double free() problem from a misuse of the DL module. In that case, reinstall sysutils/portupgrade manually.
Notes
Notes: svn path=/head/; revision=125010
Diffstat (limited to 'lang/ruby18/files')
-rw-r--r--lang/ruby18/files/patch-cgi.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/lang/ruby18/files/patch-cgi.rb b/lang/ruby18/files/patch-cgi.rb
deleted file mode 100644
index b12660ce0baa..000000000000
--- a/lang/ruby18/files/patch-cgi.rb
+++ /dev/null
@@ -1,27 +0,0 @@
---- lib/cgi.rb 2004/07/28 13:26:01 1.68.2.6
-+++ lib/cgi.rb 2004/10/27 02:46:50 1.68.2.7
-@@ -284,7 +284,7 @@ class CGI
- # Standard internet newline sequence
- EOL = CR + LF
-
-- REVISION = '$Id: cgi.rb,v 1.68.2.6 2004/07/28 13:26:01 matz Exp $' #:nodoc:
-+ REVISION = '$Id: cgi.rb,v 1.68.2.7 2004/10/27 02:46:50 matz Exp $' #:nodoc:
-
- NEEDS_BINMODE = true if /WIN/ni.match(RUBY_PLATFORM)
-
-@@ -1012,10 +1012,13 @@ def read_multipart(boundary, content
- end
-
- c = if bufsize < content_length
-- stdinput.read(bufsize) or ''
-+ stdinput.read(bufsize)
- else
-- stdinput.read(content_length) or ''
-+ stdinput.read(content_length)
- end
-+ if c.nil?
-+ raise EOFError, "bad content body"
-+ end
- buf.concat(c)
- content_length -= c.size
- end