changeset in /hg/icedtea: Netx: prompt the user fewer times for ...

Omair Majid omajid at redhat.com
Tue Aug 4 09:07:41 PDT 2009


changeset 324662e5e611 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=324662e5e611
description:
	Netx: prompt the user fewer times for https certificate issues

diffstat:

2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog                                                        |    5 +++++
netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java |    2 +-

diffs (24 lines):

diff -r e808c63fb3a3 -r 324662e5e611 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>
+
+	* netx/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 e808c63fb3a3 -r 324662e5e611 netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java
--- a/netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java	Thu Jul 23 11:39:18 2009 -0400
+++ b/netx/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