Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit d605bfb

Browse files
author
duke
committedMar 8, 2021
Automatic merge of jdk:master into master
2 parents 42387eb + 22a3117 commit d605bfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/java.base/share/classes/sun/security/ssl/RenegoInfoExtension.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -280,7 +280,7 @@ public void absent(ConnectionContext context,
280280
CipherSuite.TLS_EMPTY_RENEGOTIATION_INFO_SCSV.id) {
281281
if (SSLLogger.isOn && SSLLogger.isOn("ssl,handshake")) {
282282
SSLLogger.finest(
283-
"Safe renegotiation, using the SCSV signgling");
283+
"Safe renegotiation, using the SCSV signaling");
284284
}
285285
shc.conContext.secureRenegotiation = true;
286286
return;
@@ -341,7 +341,7 @@ public byte[] produce(ConnectionContext context,
341341
RenegotiationInfoSpec requestedSpec = (RenegotiationInfoSpec)
342342
shc.handshakeExtensions.get(CH_RENEGOTIATION_INFO);
343343
if (requestedSpec == null && !shc.conContext.secureRenegotiation) {
344-
// Ignore, no renegotiation_info extension or SCSV signgling
344+
// Ignore, no renegotiation_info extension or SCSV signaling
345345
// requested.
346346
if (SSLLogger.isOn && SSLLogger.isOn("ssl,handshake")) {
347347
SSLLogger.finest(

0 commit comments

Comments
 (0)