From 9cf0cf92f2fa1a660585ead88c9057cfa8697cf7 Mon Sep 17 00:00:00 2001 From: nahi Date: Tue, 20 Oct 2009 15:17:37 +0000 Subject: [PATCH] * lib/webrick/httpauth/digestauth.rb: typo in exception message fixed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 +++++- lib/webrick/httpauth/digestauth.rb | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3848f5d0e6..02809dd671 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -水 10月 21 00:17:28 2009 NAKAMURA, Hiroshi +Wed Oct 21 00:27:15 2009 NAKAMURA, Hiroshi + + * lib/webrick/httpauth/digestauth.rb: typo in exception message fixed. + +Wed Oct 21 00:17:28 2009 NAKAMURA, Hiroshi * 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 aac87a06df..1c6942be8b 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