summaryrefslogtreecommitdiff
path: root/lib/webrick/httpauth/authenticator.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-10-27 13:42:52 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-10-27 16:12:45 +0900
commit3198e7abd70bd2af977f2bb6c967e9df8f91adb0 (patch)
tree12265cda813be994c0aaa3a63c66a06f15e91354 /lib/webrick/httpauth/authenticator.rb
parentacdb8933384da8fce1e8d8a96946eacfaa8897e2 (diff)
Separate `send` into `public_send` and `__send__`
Diffstat (limited to 'lib/webrick/httpauth/authenticator.rb')
-rw-r--r--lib/webrick/httpauth/authenticator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webrick/httpauth/authenticator.rb b/lib/webrick/httpauth/authenticator.rb
index 8655118a04..8f0eaa3aca 100644
--- a/lib/webrick/httpauth/authenticator.rb
+++ b/lib/webrick/httpauth/authenticator.rb
@@ -85,7 +85,7 @@ module WEBrick
def log(meth, fmt, *args)
msg = format("%s %s: ", @auth_scheme, @realm)
msg << fmt % args
- @logger.send(meth, msg)
+ @logger.__send__(meth, msg)
end
def error(fmt, *args)