mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8332524: Instead of printing "TLSv1.3," it is showing "TLS13"
Reviewed-by: mullan
This commit is contained in:
parent
fa401f37df
commit
e681b4e9b3
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
@ -903,8 +903,8 @@ final class ClientHello {
|
|||
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)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue