diff options
| author | Joseph Richey <joerichey@google.com> | 2017-07-17 13:06:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-17 13:06:15 -0700 |
| commit | 465e31bd92d70d983f45a186ce29b9ff9cd1fd40 (patch) | |
| tree | 70a4bef025ab0a8f9f9a8e79579e6efea1163e2d /actions/context.go | |
| parent | e5cb8079aea929b1abd8d4279afc55983a5d0764 (diff) | |
| parent | 3bbb2b60498ec937ad736e698ce4afcb452a4644 (diff) | |
Merge pull request #18 from google/fix
Polices can now be directly unlocked with Protectors
Diffstat (limited to 'actions/context.go')
| -rw-r--r-- | actions/context.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/context.go b/actions/context.go index 8bf0287..fb25b54 100644 --- a/actions/context.go +++ b/actions/context.go @@ -44,7 +44,7 @@ var ( ErrBadConfigFile = errors.New("global config file has invalid data") ErrConfigFileExists = errors.New("global config file already exists") ErrBadConfig = errors.New("invalid Config structure provided") - ErrLocked = errors.New("method needs a call to Unlock() first") + ErrLocked = errors.New("key needs to be unlocked first") ) // Context contains the necessary global state to perform most of fscrypt's |