diff options
author | Jakob Unterwurzacher | 2018-09-08 12:40:29 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-09-08 12:40:29 +0200 |
commit | 2bdf7d5172d3540606f098030e8ede7a3ad1dfdd (patch) | |
tree | a32afb70805dbc0c4915d0b800016ea3f31214b0 /tests/trezor | |
parent | 09d28c293e2f4142cda8dbfee0741aee7213748d (diff) |
configfile: add LoadAndDecrypt wrapper
Callers that do not want to decrypt the masterkey should
call plain Load().
https://github.com/rfjakob/gocryptfs/issues/258
Diffstat (limited to 'tests/trezor')
-rw-r--r-- | tests/trezor/trezor_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trezor/trezor_test.go b/tests/trezor/trezor_test.go index 59e10cb..5e071fc 100644 --- a/tests/trezor/trezor_test.go +++ b/tests/trezor/trezor_test.go @@ -35,7 +35,7 @@ func TestInitTrezor(t *testing.T) { // vvvvvvvvvvvvv disable -extpass dir := test_helpers.InitFS(t, "-trezor", "-extpass", "") // The freshly created config file should have the Trezor feature flag set. - _, c, err := configfile.Load(dir+"/"+configfile.ConfDefaultName, nil) + c, err := configfile.Load(dir + "/" + configfile.ConfDefaultName) if err != nil { t.Fatal(err) } |