diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-11-25 13:13:49 -0600 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-11-25 13:13:49 -0600 |
commit | 4ad6712b387f422dcf1cea9e85253ef491424462 (patch) | |
tree | 19b3117147d7464b90f00fa775f3b6fb6925caaa | |
parent | 2434d45b173ad3241b164da932b1ca4597545cfa (diff) | |
download | sbotools2-4ad6712b387f422dcf1cea9e85253ef491424462.tar.xz |
remove unused loop label
-rwxr-xr-x | sboupgradex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sboupgradex b/sboupgradex index 1572eab..f91995b 100755 --- a/sboupgradex +++ b/sboupgradex @@ -144,7 +144,7 @@ sub ask_opts ($) { my $kv_regex = qr/[A-Z0-9]+=[^\s]+(|\s([A-Z]+=[^\s]+){0,})/; my $opts = &$ask; return unless $opts; - FIRST: while ($opts !~ $kv_regex) { + while ($opts !~ $kv_regex) { warn "Invalid input received.\n"; $opts = &$ask; } |