quick fix of a missing comma

unstable
Rob Fuller 2011-11-17 20:05:35 -05:00
parent 77cba9de7c
commit feab20db14
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class Metasploit3 < Msf::Post
register_options(
[
OptString.new('LTYPE', [true, 'Account informations (type info for known types)', 'WK']), # Enum would be a better choice
OptString.new('DOMAIN', [false, 'Domain to perform lookups on, default is current domain',nil])
OptString.new('DOMAIN', [false, 'Domain to perform lookups on, default is current domain',nil]),
OptBool.new('SAVEHOSTS', [true, 'Save Discovered Hosts to the Database', false])
], self.class)
end