diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-17 17:30:46 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-17 17:30:46 -0700 |
| commit | 1a4a020ad5766fce3b3ad719d85593a3e8159733 (patch) | |
| tree | ca9476a0aecaf79cfc8716875db073ea54d5f748 /cmd/fscrypt/errors.go | |
| parent | bd12a36ca860f8de5beb5095b7d97510363b7cc7 (diff) | |
cmd/fscrypt: username and login token fix
The commit changes how we get the username representation, and uses the
new pam API for checking the proposed login token.
Diffstat (limited to 'cmd/fscrypt/errors.go')
| -rw-r--r-- | cmd/fscrypt/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fscrypt/errors.go b/cmd/fscrypt/errors.go index c698673..f11ff12 100644 --- a/cmd/fscrypt/errors.go +++ b/cmd/fscrypt/errors.go @@ -46,7 +46,6 @@ var ( ErrCanceled = errors.New("operation canceled") ErrNoDesctructiveOps = errors.New("operation would be destructive") ErrMaxPassphrase = util.SystemError("max passphrase length exceeded") - ErrPAMPassphrase = errors.New("incorrect login passphrase") ErrInvalidSource = errors.New("invalid source type") ErrPassphraseMismatch = errors.New("entered passphrases do not match") ErrSpecifyProtector = errors.New("multiple protectors available") @@ -59,6 +58,7 @@ var ( ErrBadOwners = errors.New("you do not own this directory") ErrNotEmptyDir = errors.New("not an empty directory") ErrNotPassphrase = errors.New("protector does not use a passphrase") + ErrUnknownUser = errors.New("unknown user") ) var loadHelpText = fmt.Sprintf("You may need to mount a linked filesystem. Run with %s for more information.", shortDisplay(verboseFlag)) |