Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Adjust formatted tls event message for key verification failure
  • Loading branch information
jfallows committed Jun 29, 2024
commit 7fcbc9d0838d04753196480b0373ac7c336bf255
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public String format(
TlsKeyVerificationFailedExFW ex = extension.tlsKeyVerificationFailed();
result = switch (ex.failureType().get())
{
case TLS_KEY_MISSING -> String.format("Key pair (%s) is missing.", ex.keyName());
case TLS_KEY_INVALID -> String.format("Key pair (%s) is invalid.", ex.keyName());
case TLS_KEY_MISSING -> String.format("Key (%s) is missing.", ex.keyName());
case TLS_KEY_INVALID -> String.format("Key (%s) is invalid.", ex.keyName());
};
break;
}
Expand Down