summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 20:03:03 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 20:03:03 +0000
commitfdcbfdc47088050b77c0d0568b7de538d16d481e (patch)
treed8bed6788a31237aa898fad5203df02f61404108
parentf0e2ebbcb2a8dc443eb8fa24866bb9866621d551 (diff)
Backport #1509 [ruby-dev:38538]; Typo in CGI::HTTP_STATUS: Rrecondition -> Precondition
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@24655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog2
-rw-r--r--lib/cgi.rb2
-rw-r--r--version.h2
3 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ad9993cdc7..c316d507ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@ Tue Aug 25 11:48:00 2009 Kirk Haines <khaines@ruby-lang.org>
* Backport #1975 [ruby-core:25025]; Dir.mktmpdir exists in the rest of the 1.8 line, and it is used in the test suite that goes with backport #1168. It doesn't conflict with any existing 1.8.6 art, and is a pure-ruby addition to Dir, so I backported it to 1.8.6 from 1.8.7.
+ * Backport #1509 [ruby-dev:38538]; Typo in CGI::HTTP_STATUS: Rrecondition -> Precondition
+
Thu Aug 20 9:43:00 2009 Kirk Haines <khaines@ruby-lang.org>
* Backport #1001; Handle EBADF to fix problem with interpreter wide deadlock when native close() is called on fd which is currently being IO#select()ed. r24600
diff --git a/lib/cgi.rb b/lib/cgi.rb
index bf64d5a54c..15e71a3b65 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -306,7 +306,7 @@ class CGI
"METHOD_NOT_ALLOWED" => "405 Method Not Allowed",
"NOT_ACCEPTABLE" => "406 Not Acceptable",
"LENGTH_REQUIRED" => "411 Length Required",
- "PRECONDITION_FAILED" => "412 Rrecondition Failed",
+ "PRECONDITION_FAILED" => "412 Precondition Failed",
"SERVER_ERROR" => "500 Internal Server Error",
"NOT_IMPLEMENTED" => "501 Method Not Implemented",
"BAD_GATEWAY" => "502 Bad Gateway",
diff --git a/version.h b/version.h
index b806961226..2c1827317b 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2009-08-26"
#define RUBY_VERSION_CODE 186
#define RUBY_RELEASE_CODE 20090826
-#define RUBY_PATCHLEVEL 386
+#define RUBY_PATCHLEVEL 387
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8