diff options
author | Jakob Unterwurzacher | 2018-06-25 22:02:05 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-07-01 20:56:22 +0200 |
commit | 91de77943fba3cb993aad4e9756e159c4514764a (patch) | |
tree | 7cc07a23ec031e93b0c896b4541a94beaed46aee /gocryptfs-xray | |
parent | 8e5ca7299a3292cae64418aaf875819c2cca01f5 (diff) |
configfile: reduce function name stutter
configfile.LoadConfFile() -> configfile.Load()
configfile.CreateConfFile() -> configfile.Create()
Diffstat (limited to 'gocryptfs-xray')
-rw-r--r-- | gocryptfs-xray/xray_main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gocryptfs-xray/xray_main.go b/gocryptfs-xray/xray_main.go index 1531eb4..551b51b 100644 --- a/gocryptfs-xray/xray_main.go +++ b/gocryptfs-xray/xray_main.go @@ -61,7 +61,7 @@ func main() { func dumpMasterKey(fn string) { tlog.Info.Enabled = false pw := readpassword.Once("", "") - masterkey, _, err := configfile.LoadConfFile(fn, pw) + masterkey, _, err := configfile.Load(fn, pw) if err != nil { fmt.Fprintln(os.Stderr, err) exitcodes.Exit(err) |