Skip to content

Commit

Permalink
TKSS-796: Backport JDK-8332524: Instead of printing "TLSv1.3," it is …
Browse files Browse the repository at this point in the history
…showing "TLS13"
  • Loading branch information
johnshajiang committed Jun 19, 2024
1 parent 1c1904f commit e4e7ec4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -906,8 +906,8 @@ private ProtocolVersion negotiateProtocol(
throw context.conContext.fatal(Alert.PROTOCOL_VERSION,
"The client supported protocol versions " + Arrays.toString(
ProtocolVersion.toStringArray(clientSupportedVersions)) +
" are not accepted by server preferences " +
context.activeProtocols);
" are not accepted by server preferences " + Arrays.toString(
ProtocolVersion.toStringArray(context.activeProtocols)));
}
}

Expand Down

0 comments on commit e4e7ec4

Please sign in to comment.