Skip to content

Commit

Permalink
adjust parsing rules to CT log standard (addresses issue #50)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrill-k committed Mar 14, 2024
1 parent 08acae7 commit cbf3ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/mapserver/logfetcher/logfetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func (f *LogFetcher) fetch() {
}
// Certificate.
cert, err := ctx509.ParseCertificate(raw.Cert.Data)
if err != nil {
if ctx509.IsFatal(err) {
f.chanResults <- &result{
err: err,
}
Expand Down

0 comments on commit cbf3ede

Please sign in to comment.