Skip to content

Commit a418410

Browse files
committed
Change {} back to do/end
This seems to be the only one.
1 parent a91a29d commit a418410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msfrpc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ opts = {
4141
}
4242

4343
# Parse command line arguments.
44-
arguments.parse(ARGV) { |opt, idx, val|
44+
arguments.parse(ARGV) do |opt, idx, val|
4545
case opt
4646
when "-a"
4747
opts['ServerHost'] = val
@@ -57,7 +57,7 @@ arguments.parse(ARGV) { |opt, idx, val|
5757
print("\nUsage: #{File.basename(__FILE__)} <options>\n" + arguments.usage)
5858
exit
5959
end
60-
}
60+
end
6161

6262

6363
unless opts['ServerHost']

0 commit comments

Comments
 (0)