/hg/icedtea-web: fix typo in locating the user-level trusted cli...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Fri Jan 7 05:01:14 PST 2011
changeset dc02a605f905 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=dc02a605f905
author: Omair Majid <omajid at redhat.com>
date: Fri Jan 07 08:00:08 2011 -0500
fix typo in locating the user-level trusted client certficate store
2011-01-04 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/security/KeyStores.java
(getKeyStoreLocation): Fix typo. Return the user-level certificate
store correctly.
diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
netx/net/sourceforge/jnlp/security/KeyStores.java | 2 +-
diffs (25 lines):
diff -r 94ec09d9d634 -r dc02a605f905 ChangeLog
--- a/ChangeLog Tue Jan 04 15:22:41 2011 -0500
+++ b/ChangeLog Fri Jan 07 08:00:08 2011 -0500
@@ -1,3 +1,9 @@ 2011-01-04 Omair Majid <omajid at redhat.
+2011-01-04 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/security/KeyStores.java
+ (getKeyStoreLocation): Fix typo. Return the user-level certificate
+ store correctly.
+
2011-01-04 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java: Add
diff -r 94ec09d9d634 -r dc02a605f905 netx/net/sourceforge/jnlp/security/KeyStores.java
--- a/netx/net/sourceforge/jnlp/security/KeyStores.java Tue Jan 04 15:22:41 2011 -0500
+++ b/netx/net/sourceforge/jnlp/security/KeyStores.java Fri Jan 07 08:00:08 2011 -0500
@@ -262,7 +262,7 @@ public final class KeyStores {
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_CERTS;
break;
case CLIENT_CERTS:
- configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_CLIENT_CERTS;
+ configKey = DeploymentConfiguration.KEY_USER_TRUSTED_CLIENT_CERTS;
break;
}
break;
More information about the distro-pkg-dev
mailing list