]> git.pld-linux.org Git - packages/ruby.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 26 Dec 2004 02:20:39 +0000 (02:20 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ruby-cgi_dos.patch -> 1.2

ruby-cgi_dos.patch [deleted file]

diff --git a/ruby-cgi_dos.patch b/ruby-cgi_dos.patch
deleted file mode 100644 (file)
index bd76845..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -ruN ruby-1.8.1.orig/lib/cgi.rb ruby-1.8.1/lib/cgi.rb
---- ruby-1.8.1.orig/lib/cgi.rb 2004-11-10 14:53:04.818456000 +0900
-+++ ruby-1.8.1/lib/cgi.rb      2004-11-10 14:54:27.844500554 +0900
-@@ -1012,10 +1012,13 @@
-           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
This page took 0.041974 seconds and 4 git commands to generate.