summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Schoof <reinier@skoef.nl>2015-09-25 10:48:36 +0200
committerReinier Schoof <reinier@skoef.nl>2015-09-25 10:48:36 +0200
commit58a2939718195c01722545e60b5d6c5c2777aa48 (patch)
treeb467aa896e5831601b66b47b0b09e88d8a6a9c53
parentca67e3c67d155ef89eef3add951c4ee010d84f3f (diff)
cleaned up conditional
-rw-r--r--lib/oxidized/input/telnet.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oxidized/input/telnet.rb b/lib/oxidized/input/telnet.rb
index f8adb4f..cedcd88 100644
--- a/lib/oxidized/input/telnet.rb
+++ b/lib/oxidized/input/telnet.rb
@@ -19,7 +19,7 @@ module Oxidized
opt['Output_log'] = CFG.input.debug?.to_s + '-telnet' if CFG.input.debug?
@telnet = Net::Telnet.new opt
- if !@node.auth[:username].nil? and @node.auth[:username].length > 0
+ if @node.auth[:username] and @node.auth[:username].length > 0
expect username
@telnet.puts @node.auth[:username]
end