diff options
Diffstat (limited to 'actions')
| -rw-r--r-- | actions/policy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/policy.go b/actions/policy.go index 946bdd4..ceae573 100644 --- a/actions/policy.go +++ b/actions/policy.go @@ -365,7 +365,7 @@ func (policy *Policy) Apply(path string) error { // IsProvisioned returns a boolean indicating if the policy has its key in the // keyring, meaning files and directories using this policy are accessible. func (policy *Policy) IsProvisioned() bool { - _, _, err := crypto.FindPolicyKey(policy.Description()) + _, err := crypto.FindPolicyKey(policy.Description()) return err == nil } |