changeset in /hg/icedtea6: Netx: prompt the user fewer times for...
Omair Majid
omajid at redhat.com
Wed Jul 29 08:18:45 PDT 2009
changeset 090e738a38e7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=090e738a38e7
description:
Netx: prompt the user fewer times for https certificate issues
diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog | 5 +++++
rt/net/sourceforge/jnlp/security/VariableX509TrustManager.java | 2 +-
diffs (24 lines):
diff -r 4ec5e065fb53 -r 090e738a38e7 ChangeLog
--- a/ChangeLog Thu Jul 23 11:39:18 2009 -0400
+++ b/ChangeLog Wed Jul 29 10:48:43 2009 -0400
@@ -1,3 +1,8 @@ 2009-07-23 Deepak Bhole <dbhole at redhat
+2009-07-29 Omair Majid <omajid at redhat.com>
+
+ * rt/net/sourceforge/jnlp/security/VariableX509TrustManager.java
+ (checkServerTrusted): Synchronize the function.
+
2009-07-23 Deepak Bhole <dbhole at redhat.com>
* plugin/icedteanp/IcedTeaJavaRequestProcessor.c: Added support for
diff -r 4ec5e065fb53 -r 090e738a38e7 rt/net/sourceforge/jnlp/security/VariableX509TrustManager.java
--- a/rt/net/sourceforge/jnlp/security/VariableX509TrustManager.java Thu Jul 23 11:39:18 2009 -0400
+++ b/rt/net/sourceforge/jnlp/security/VariableX509TrustManager.java Wed Jul 29 10:48:43 2009 -0400
@@ -143,7 +143,7 @@ public class VariableX509TrustManager im
* @param authType The auth type algorithm
* @param checkOnly Whether to "check only" i.e. no user prompt, or to prompt for permission
*/
- public void checkServerTrusted(X509Certificate[] chain, String authType, boolean checkOnly) throws CertificateException {
+ public synchronized void checkServerTrusted(X509Certificate[] chain, String authType, boolean checkOnly) throws CertificateException {
try {
checkAllManagers(chain, authType);
} catch (CertificateException ce) {
More information about the distro-pkg-dev
mailing list