Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions command/certificate/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ func verifyAction(ctx *cli.Context) error {
}

crlVerified := false
crlOut:
crlOut:
for _, endpoint := range endpoints {
respReceived, err := VerifyCRLEndpoint(endpoint, cert, issuer, httpClient, insecure)
switch {
Expand Down Expand Up @@ -349,7 +349,7 @@ func verifyAction(ctx *cli.Context) error {
}

ocspVerified := false
ocspOut:
ocspOut:
for _, endpoint := range endpoints {
respReceived, err := VerifyOCSPEndpoint(endpoint, cert, issuer, httpClient)
switch {
Expand Down
2 changes: 1 addition & 1 deletion command/crl/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (

"github.com/pkg/errors"
"github.com/smallstep/cli/flags"
"github.com/smallstep/cli/utils"
"github.com/smallstep/cli/internal/crlutil"
"github.com/smallstep/cli/utils"
"github.com/urfave/cli"
"go.step.sm/cli-utils/command"
"go.step.sm/cli-utils/errs"
Expand Down