Skip to content

Commit

Permalink
- Keybox Check: Fix a coding error that output both revoked and clean…
Browse files Browse the repository at this point in the history
… messages instead of just revoked message.
  • Loading branch information
badabing2005 committed Dec 1, 2024
1 parent eedc9c4 commit 299e145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -4786,7 +4786,7 @@ def check_kb(filename):
if is_revoked:
print(f"\n❌❌❌ Keybox {filename} contains revoked certificates!")
result = -1
if is_expired:
elif is_expired:
print(f"\n❌❌❌ Keybox {filename} contains expired certificates!")
result = -1
else:
Expand Down

0 comments on commit 299e145

Please sign in to comment.