--- a/jdk/src/share/classes/sun/security/ssl/SSLContextImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLContextImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -266,7 +266,7 @@
}
// Get suported CipherSuiteList.
- CipherSuiteList getSuportedCipherSuiteList() {
+ CipherSuiteList getSupportedCipherSuiteList() {
// The maintenance of cipher suites needs to be synchronized.
synchronized (this) {
// Clear cache of available ciphersuites.
--- a/jdk/src/share/classes/sun/security/ssl/SSLEngineImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLEngineImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -1978,7 +1978,7 @@
* @return an array of cipher suite names
*/
public String[] getSupportedCipherSuites() {
- return sslContext.getSuportedCipherSuiteList().toStringArray();
+ return sslContext.getSupportedCipherSuiteList().toStringArray();
}
/**
--- a/jdk/src/share/classes/sun/security/ssl/SSLServerSocketFactoryImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLServerSocketFactoryImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, 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
@@ -113,7 +113,7 @@
* @return an array of cipher suite names
*/
public String[] getSupportedCipherSuites() {
- return context.getSuportedCipherSuiteList().toStringArray();
+ return context.getSupportedCipherSuiteList().toStringArray();
}
}
--- a/jdk/src/share/classes/sun/security/ssl/SSLServerSocketImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLServerSocketImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2012, 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
@@ -168,7 +168,7 @@
* @return an array of cipher suite names
*/
public String[] getSupportedCipherSuites() {
- return sslContext.getSuportedCipherSuiteList().toStringArray();
+ return sslContext.getSupportedCipherSuiteList().toStringArray();
}
/**
--- a/jdk/src/share/classes/sun/security/ssl/SSLSocketFactoryImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLSocketFactoryImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, 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
@@ -177,6 +177,6 @@
* certain kinds of certificates to use certain cipher suites.
*/
public String[] getSupportedCipherSuites() {
- return context.getSuportedCipherSuiteList().toStringArray();
+ return context.getSupportedCipherSuiteList().toStringArray();
}
}
--- a/jdk/src/share/classes/sun/security/ssl/SSLSocketImpl.java Tue Sep 18 13:14:49 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ssl/SSLSocketImpl.java Tue Sep 18 06:51:02 2012 -0700
@@ -2353,7 +2353,7 @@
* @return an array of cipher suite names
*/
public String[] getSupportedCipherSuites() {
- return sslContext.getSuportedCipherSuiteList().toStringArray();
+ return sslContext.getSupportedCipherSuiteList().toStringArray();
}
/**