diff options
Diffstat (limited to 'internal/exitcodes/exitcodes.go')
-rw-r--r-- | internal/exitcodes/exitcodes.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/exitcodes/exitcodes.go b/internal/exitcodes/exitcodes.go index 3e78b64..ae7824d 100644 --- a/internal/exitcodes/exitcodes.go +++ b/internal/exitcodes/exitcodes.go @@ -53,6 +53,10 @@ const ( PanicLogCreate = 21 // PasswordEmpty - we received an empty password PasswordEmpty = 22 + // OpenConf - the was an error opening the gocryptfs.conf file for reading + OpenConf = 23 + // WriteConf - could not write the gocryptfs.conf + WriteConf = 24 ) // Err wraps an error with an associated numeric exit code |