Skip to content

Commit 22a3117

Browse files
author
John Jiang
committed
8263137: Typos in sun.security.ssl.RenegoInfoExtension
Reviewed-by: xuelei
1 parent 18fc350 commit 22a3117

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

Lines changed: 3 additions & 3 deletions
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)