aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/telnet.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net/telnet.rb b/lib/net/telnet.rb
index 095be45334..6e50d17572 100644
--- a/lib/net/telnet.rb
+++ b/lib/net/telnet.rb
@@ -706,7 +706,7 @@ module Net # :nodoc:
end
if block_given?
- line = waitfor(/login[: ]*\z/n){|c| yield c }
+ line = waitfor(/[Ll]ogin[: ]*\z/n){|c| yield c }
if password
line += cmd({"String" => username,
"Match" => /Password[: ]*\z/n}){|c| yield c }
@@ -715,7 +715,7 @@ module Net # :nodoc:
line += cmd(username){|c| yield c }
end
else
- line = waitfor(/login[: ]*\z/n)
+ line = waitfor(/[Ll]ogin[: ]*\z/n)
if password
line += cmd({"String" => username,
"Match" => /Password[: ]*\z/n})