diff options
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli_args.go b/cli_args.go index 89cbdd9..25392c4 100644 --- a/cli_args.go +++ b/cli_args.go @@ -151,9 +151,9 @@ func parseCliOpts() (args argContainer) { os.Exit(ErrExitUsage) } } - // "-passfile FILE" is a shortcut for "-extpass=/bin/cat FILE" + // '-passfile FILE' is a shortcut for -extpass='/bin/cat -- FILE' if args.passfile != "" { - args.extpass = "/bin/cat " + args.passfile + args.extpass = "/bin/cat -- " + args.passfile } if args.extpass != "" && args.masterkey != "" { tlog.Fatal.Printf("The options -extpass and -masterkey cannot be used at the same time") |