mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
aamine
* lib/net/http.rb: hex-alpha is not [a-h] but [a-f]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
368683723e
commit
de75f3c0a6
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Oct 16 06:39:32 2000 Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
||||
|
||||
* lib/net/http.rb: hex-alpha is not [a-h] but [a-f].
|
||||
|
||||
Sat Oct 14 03:32:13 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_thread_alloc): should not link a new thread in the
|
||||
|
|
|
@ -851,7 +851,7 @@ SRC
|
|||
|
||||
while true do
|
||||
line = @socket.readline
|
||||
m = /[0-9a-hA-H]+/.match( line )
|
||||
m = /[0-9a-fA-F]+/.match( line )
|
||||
unless m then
|
||||
raise HTTPBadResponse, "wrong chunk size line: #{line}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue