summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/net/smtp.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index aa27577068..a4bb4ecf1d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 a84b7ba154..8c50e28dd0 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