summaryrefslogtreecommitdiff
path: root/bin/multi-ping
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-20 14:00:31 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-20 14:00:31 +0000
commitba3c4686787a5541110cf51bf374aa048efc91e2 (patch)
treedd00b06dc5ab9a539d9ab07c6ed92bf1bdd2029e /bin/multi-ping
parent46576e24594242c20c06129f49044220cd59c90b (diff)
Updated case statements for ruby1.9
Diffstat (limited to 'bin/multi-ping')
-rwxr-xr-xbin/multi-ping4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/multi-ping b/bin/multi-ping
index 2d1477d..06232e4 100755
--- a/bin/multi-ping
+++ b/bin/multi-ping
@@ -50,9 +50,9 @@ opts = GetoptLong.new(
begin
opts.each do |opt,arg|
case opt
- when '--help'
+ when '--help' then
$help = true
- when '--manual'
+ when '--manual' then
$manual = true
end
end