1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nahi 2009-10-20 15:17:37 +00:00
parent 71025b8ab0
commit 9cf0cf92f2
2 changed files with 6 additions and 2 deletions

View file

@ -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.

View file

@ -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