Land #6031, delete unused -a db_export option

bug/bundler_fix
Brent Cook 2015-10-01 14:12:34 -05:00
commit 7cd30ef0b8
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
2 changed files with 2 additions and 2 deletions

View File

@ -1777,7 +1777,7 @@ class Db
case arg
when '-h','--help'
print_line "Usage:"
print_line " db_export -f <format> [-a] [filename]"
print_line " db_export -f <format> [filename]"
print_line " Format can be one of: #{export_formats.join(", ")}"
when '-f','--format'
format = args.shift.to_s.downcase

View File

@ -321,7 +321,7 @@ describe Msf::Ui::Console::CommandDispatcher::Db do
db.cmd_db_export "-h"
@output.should =~ [
"Usage:",
" db_export -f <format> [-a] [filename]",
" db_export -f <format> [filename]",
" Format can be one of: xml, pwdump"
]
end