Minor bug fixes.

This commit is contained in:
2025-11-19 02:43:25 -08:00
parent 7e36a828d4
commit d76db4a947
3 changed files with 16 additions and 10 deletions

View File

@@ -35,12 +35,12 @@ func main() {
}
if config.leafOnly {
dump.DisplayCert(os.Stdout, certs[0])
dump.DisplayCert(os.Stdout, certs[0], config.showHash)
continue
}
for i := range certs {
dump.DisplayCert(os.Stdout, certs[i])
dump.DisplayCert(os.Stdout, certs[i], config.showHash)
}
}
}