We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae3cb3 commit 6327348Copy full SHA for 6327348
check-certificates.rsc
@@ -92,7 +92,9 @@
92
[ $FormatLine "Private key" [ $IfThenElse (($CertVal->"private-key") = true) "available" "missing" ] ] . "\n" . \
93
[ $FormatLine "Fingerprint" ($CertVal->"fingerprint") ] . "\n" . \
94
[ $FormatLine "Issuer" ($CertVal->"ca" . ([ $ParseKeyValueStore ($CertVal->"issuer") ]->"CN")) ] . "\n" . \
95
- [ $FormatLine "Validity" ($CertVal->"invalid-before" . " to " . $CertVal->"invalid-after") ] . "\n" . \
+ "Validity:\n" . \
96
+ [ $FormatLine " from" ($CertVal->"invalid-before") ] . "\n" . \
97
+ [ $FormatLine " to" ($CertVal->"invalid-after") ] . "\n" . \
98
[ $FormatLine "Expires in" [ $IfThenElse (($CertVal->"expired") = true) "expired" [ $FormatExpire ($CertVal->"expires-after") ] ] ]);
99
}
100
0 commit comments