diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-12 05:37:38 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-12 05:37:38 +0000 |
commit | fbcc6dea0c86e7e4d087f1d4b2de19b211d16647 (patch) | |
tree | 68bde87194755712893e5efa4d7f9d2f5312df10 /lib/net/telnet.rb | |
parent | 9d823983dc3e88cb7775c78908a4bb5133ad88ac (diff) | |
download | ruby-fbcc6dea0c86e7e4d087f1d4b2de19b211d16647.tar.gz |
matz: 1.6.0 final (hopufully)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/telnet.rb')
-rw-r--r-- | lib/net/telnet.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/net/telnet.rb b/lib/net/telnet.rb index 1b8a52bc78..44bb223ddf 100644 --- a/lib/net/telnet.rb +++ b/lib/net/telnet.rb @@ -312,7 +312,7 @@ module Net end else message = "Trying " + @options["Host"] + "...\n" - yield(message) if iterator? + yield(message) if block_given? @log.write(message) if @options.has_key?("Output_log") @dumplog.log_dump('#', message) if @options.has_key?("Dump_log") @@ -335,7 +335,7 @@ module Net @sock.binmode message = "Connected to " + @options["Host"] + ".\n" - yield(message) if iterator? + yield(message) if block_given? @log.write(message) if @options.has_key?("Output_log") @dumplog.log_dump('#', message) if @options.has_key?("Dump_log") end @@ -489,11 +489,11 @@ module Net end @log.print(buf) if @options.has_key?("Output_log") line.concat(buf) - yield buf if iterator? + yield buf if block_given? rescue EOFError # End of file reached if line == '' line = nil - yield nil if iterator? + yield nil if block_given? end break end @@ -554,7 +554,7 @@ module Net end self.puts(string) - if iterator? + if block_given? waitfor({"Prompt" => match, "Timeout" => time_out}){|c| yield c } else waitfor({"Prompt" => match, "Timeout" => time_out}) @@ -569,7 +569,7 @@ module Net username = options end - if iterator? + if block_given? line = waitfor(/login[: ]*\z/n){|c| yield c } if password line.concat( cmd({"String" => username, @@ -706,7 +706,7 @@ end * 1999/04/11 - wakou * version 0.163 - * STDOUT.write(message) --> yield(message) if iterator? + * STDOUT.write(message) --> yield(message) if block_given? * 1999/03/17 - wakou * version 0.162 |