From 7050c7c6aa0031e59c59194aa487be117bc053fd Mon Sep 17 00:00:00 2001 From: Brendan McMillion Date: Sun, 18 Sep 2016 20:01:13 -0700 Subject: [PATCH] Fix typo. --- cryptor/cryptor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptor/cryptor.go b/cryptor/cryptor.go index ea8890e..0a80c1a 100644 --- a/cryptor/cryptor.go +++ b/cryptor/cryptor.go @@ -328,7 +328,7 @@ func (encrypted *EncryptedData) wrapKey(records *passvault.Records, clearKey []b encrypted.KeySet = append(encrypted.KeySet, out) } } - } else if access.Minimum > 3 { + } else if access.Minimum > 2 { err = errors.New("Encryption to a list of owners with minimum > 2 is not implemented") return err }