diff options
author | Jakob Unterwurzacher | 2019-03-03 13:25:30 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2019-03-03 13:25:30 +0100 |
commit | cf27037f20723e934320edeff7f8aa356bdca467 (patch) | |
tree | b12428d172325fcfb517af26f7985651ef70e902 /masterkey.go | |
parent | 61940a9c0666eba8be21de4f1cd182912f74f929 (diff) |
Allow multiple -extpass arguments
To support arguments containing spaces, -extpass can now
be passed multiple times.
https://github.com/rfjakob/gocryptfs/issues/289
Diffstat (limited to 'masterkey.go')
-rw-r--r-- | masterkey.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/masterkey.go b/masterkey.go index 332a673..8392bc6 100644 --- a/masterkey.go +++ b/masterkey.go @@ -43,7 +43,7 @@ func getMasterKey(args *argContainer) (masterkey []byte, confFile *configfile.Co masterkeyFromStdin := false // "-masterkey=stdin" if args.masterkey == "stdin" { - args.masterkey = string(readpassword.Once("", "", "Masterkey")) + args.masterkey = string(readpassword.Once(nil, "", "Masterkey")) masterkeyFromStdin = true } // "-masterkey=941a6029-3adc6a1c-..." |