From 1baec6eef208984b13b55d0f9545afab9c2315e8 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 14 Feb 2024 07:03:31 -0800 Subject: [PATCH] Fix copy/paste error (#796) Co-authored-by: Zakir Durumeric --- v3/lints/cabf_smime_br/smime_legacy_multipurpose_eku_check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/lints/cabf_smime_br/smime_legacy_multipurpose_eku_check.go b/v3/lints/cabf_smime_br/smime_legacy_multipurpose_eku_check.go index 24fc44b00..8f3ac35e1 100644 --- a/v3/lints/cabf_smime_br/smime_legacy_multipurpose_eku_check.go +++ b/v3/lints/cabf_smime_br/smime_legacy_multipurpose_eku_check.go @@ -20,7 +20,7 @@ import ( "github.com/zmap/zlint/v3/util" ) -// shallHaveCrlDistributionPoints - linter to enforce requirement that SMIME certificates SHALL contain emailProtecton EKU +// legacyMultipurposeEKUCheck - linter to enforce requirement that SMIME certificates SHALL contain emailProtecton EKU type legacyMultipurposeEKUCheck struct { } @@ -37,7 +37,7 @@ func init() { }) } -// NewShallHaveCrlDistributionPoints creates a new linter to enforce MAY/SHALL NOT field requirements for mailbox validated SMIME certs +// NewLegacyMultipurposeEKUCheck creates a new linter to enforce MAY/SHALL NOT field requirements for mailbox validated SMIME certs func NewLegacyMultipurposeEKUCheck() lint.CertificateLintInterface { return &legacyMultipurposeEKUCheck{} }