diff options
-rwxr-xr-x | cli/icevault | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/icevault b/cli/icevault index d679b04..4848cd7 100755 --- a/cli/icevault +++ b/cli/icevault @@ -865,9 +865,9 @@ elsif ($COMMAND eq 'import') { } elsif ($COMMAND eq 'fill') { - getopts( 'force|f' => "-f, --force \tDon't ask before updating the form" - , 'show-passwords|p=s' => "-p, --show-passwords\tDon't redact passwords" - , 'socket|s=s' => "-s, --socket=PATH \tSpecifiy the path to the Icevault socket" + getopts( 'force|f' => "-f, --force \tDon't ask before updating the form" + , 'show-passwords|p' => "-p, --show-passwords\tDon't redact passwords" + , 'socket|s=s' => "-s, --socket=PATH \tSpecifiy the path to the Icevault socket" ); usage() unless $#ARGV == 0; @@ -1017,7 +1017,7 @@ elsif ($COMMAND eq 'fill') { } elsif ($COMMAND eq 'dump') { - getopts('show-passwords|p=s' => "-p, --show-passwords\tDon't redact passwords"); + getopts('show-passwords|p' => "-p, --show-passwords\tDon't redact passwords"); usage() unless $#ARGV == 0; my $id = shift; |