aboutsummaryrefslogtreecommitdiffstats
path: root/check-certificates
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2021-05-21 08:31:45 +0200
committerGravatar Christian Hesse <mail@eworm.de>2021-05-21 08:31:45 +0200
commit330bc7fc8b39bebccf3d439acdc3318e4fe6623c (patch)
treead41ebd8a4368fafcde3e52e684e5c82c00e4b90 /check-certificates
parent45dd33c90a8404ee9bd317067fa1f88462c5d907 (diff)
check-certificates: fix variable name
Diffstat (limited to 'check-certificates')
-rw-r--r--check-certificates2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-certificates b/check-certificates
index a052930..9ddf0e7 100644
--- a/check-certificates
+++ b/check-certificates
@@ -124,7 +124,7 @@ $WaitFullyConnected;
message=("A certificate on " . $Identity . " " . $State . ".\n\n" . \
"Name: " . ($CertVal->"name") . "\n" . \
"CommonName: " . ($CertVal->"common-name") . "\n" . \
- "Private key: " . [ $IfThenElse (($CertNewVal->"private-key") = true) "available" "missing" ] . "\n" . \
+ "Private key: " . [ $IfThenElse (($CertVal->"private-key") = true) "available" "missing" ] . "\n" . \
"Fingerprint: " . ($CertVal->"fingerprint") . "\n" . \
"Issuer: " . ($CertVal->"ca") . ([ $ParseKeyValueStore ($CertVal->"issuer") ]->"CN") . "\n" . \
"Validity: " . ($CertVal->"invalid-before") . " to " . ($CertVal->"invalid-after") . "\n" . \