From 7622c9f538d324ba4ed704ff836942af39d2b1f9 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 9 May 2020 16:10:22 +0200 Subject: main: rename parseMasterKey() -> unhexMasterKey() Make it clear that function does NOT parse the "-masterkey" command line argument, it just unhexes the payload. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index 8150499..3ec2f31 100644 --- a/main.go +++ b/main.go @@ -43,7 +43,7 @@ func loadConfig(args *argContainer) (masterkey []byte, cf *configfile.ConfFile, // The user has passed the master key on the command line (probably because // he forgot the password). if args.masterkey != "" { - masterkey = parseMasterKey(args.masterkey, false) + masterkey = unhexMasterKey(args.masterkey, false) return masterkey, cf, nil } pw := readpassword.Once([]string(args.extpass), args.passfile, "") -- cgit v1.2.3