summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-20 15:17:37 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-20 15:17:37 +0000
commit97270449ebdc3f0c3dea89daaf84d518251ec078 (patch)
tree1eef619b4229bd2c22d095818b5d1001d31ad988
parent6580019e666f81574e5e086e06dcb4f8610a332e (diff)
downloadruby-97270449ebdc3f0c3dea89daaf84d518251ec078.tar.gz
ruby-97270449ebdc3f0c3dea89daaf84d518251ec078.tar.xz
ruby-97270449ebdc3f0c3dea89daaf84d518251ec078.zip
* lib/webrick/httpauth/digestauth.rb: typo in exception message fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/webrick/httpauth/digestauth.rb2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3848f5d0e..02809dd67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
-水 10月 21 00:17:28 2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
+Wed Oct 21 00:27:15 2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
+
+ * lib/webrick/httpauth/digestauth.rb: typo in exception message fixed.
+
+Wed Oct 21 00:17:28 2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/logger.rb: imported upstream version (logger/1.2.7) see #2238.
* do not raise an exception even if log writing failed.
diff --git a/lib/webrick/httpauth/digestauth.rb b/lib/webrick/httpauth/digestauth.rb
index aac87a06d..1c6942be8 100644
--- a/lib/webrick/httpauth/digestauth.rb
+++ b/lib/webrick/httpauth/digestauth.rb
@@ -222,7 +222,7 @@ module WEBrick
end
}.join(', ')
end
- info('%s: authentication scceeded.', auth_req['username'])
+ info('%s: authentication succeeded.', auth_req['username'])
req.user = auth_req['username']
return true
end