diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-10 23:56:22 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-10 23:56:22 +0000 |
| commit | b7b903bbd0200dc368d1652802f8b8393ecf9df4 (patch) | |
| tree | e35248a573d587fc74b9e612a27f7bcb08983ee9 | |
| parent | f86b43b88c7ce541dbca55f3b6762766c45e4f10 (diff) | |
| download | ruby-b7b903bbd0200dc368d1652802f8b8393ecf9df4.tar.gz ruby-b7b903bbd0200dc368d1652802f8b8393ecf9df4.tar.xz ruby-b7b903bbd0200dc368d1652802f8b8393ecf9df4.zip | |
* lib/net/smtp.rb (Net::SMTP#check_auth_args): should not change
number of methods for the sake of compatibility.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/net/smtp.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon May 11 04:39:45 2009 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/net/smtp.rb (Net::SMTP#check_auth_args): should not change + number of methods for the sake of compatibility. + Sun May 10 11:36:11 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/dl/cfunc.c (rb_dlcfunc_instance_p): new function to check if diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index a84b7ba15..8c50e28dd 100644 --- a/lib/net/smtp.rb +++ b/lib/net/smtp.rb @@ -769,7 +769,7 @@ module Net "auth_#{type.to_s.downcase}".intern end - def check_auth_args(user, secret) + def check_auth_args(user, secret, authtype = DEFAULT_AUTH_TYPE) unless user raise ArgumentError, 'SMTP-AUTH requested but missing user name' end |
