diff options
author | Jakob Unterwurzacher | 2017-05-14 14:30:50 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-05-14 14:30:50 +0200 |
commit | c44389d9422f31e0b462d1bcd47f80e95913cb60 (patch) | |
tree | 367e361b99e10a565674bfeb510602af60637920 /internal/configfile | |
parent | 2aea2d3d62e5df4c8bf25195dc97e60b495f6f12 (diff) |
exitcodes: specific codes for failure to read or write gocryptfs.conf
New codes:
* OpenConf = 23
* WriteConf = 24
Diffstat (limited to 'internal/configfile')
-rw-r--r-- | internal/configfile/config_file.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index 5605e1d..fea4a84 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -96,6 +96,7 @@ func LoadConfFile(filename string, password string) ([]byte, *ConfFile, error) { // Read from disk js, err := ioutil.ReadFile(filename) if err != nil { + fmt.Printf("LoadConfFile: ReadFile: %#v\n", err) return nil, nil, err } |