aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/smtp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/smtp.rb')
-rw-r--r--lib/net/smtp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index 276c979b20..71d368e084 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -302,7 +302,7 @@ module Net
def start( helo = 'localhost.localdomain',
user = nil, secret = nil, authtype = nil )
- raise IOError, 'SMTP session opened already' if @started
+ raise IOError, 'SMTP session already started' if @started
if block_given?
begin
do_start(helo, user, secret, authtype)
@@ -330,7 +330,7 @@ module Net
rescue ProtocolError
if @esmtp
@esmtp = false
- @command.error_ok
+ @command = SMTPCommand.new(@socket)
retry
end
raise