From c4f235a614b30ae52b1393ee99c0cea507e72047 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 31 Aug 2017 16:12:29 -0400 Subject: [PATCH] Update `regHoldsAuthorizations` to `acctHoldsAuthorizations`. --- wfe2/wfe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfe2/wfe.go b/wfe2/wfe.go index 4d3c6cf77..636c42250 100644 --- a/wfe2/wfe.go +++ b/wfe2/wfe.go @@ -681,7 +681,7 @@ func (wfe *WebFrontEndImpl) revokeCertByKeyID( // certificate by checking that the account has valid authorizations for all // of the names in the certificate authorizedToRevoke := func(parsedCertificate *x509.Certificate) *probs.ProblemDetails { - valid, err := wfe.regHoldsAuthorizations(ctx, accountID, parsedCertificate.DNSNames) + valid, err := wfe.acctHoldsAuthorizations(ctx, accountID, parsedCertificate.DNSNames) if err != nil { return probs.ServerInternal("Failed to retrieve authorizations for names in certificate") }