diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | netx/net/sourceforge/jnlp/security/KeyStores.java | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2011-01-04 Omair Majid <[email protected]> + * netx/net/sourceforge/jnlp/security/KeyStores.java + (getKeyStoreLocation): Fix typo. Return the user-level certificate + store correctly. + +2011-01-04 Omair Majid <[email protected]> + * netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java: Add systemJnlpPolicy and userJnlpPolicy. (JNLPPolicy): Initialize the new policies. diff --git a/netx/net/sourceforge/jnlp/security/KeyStores.java b/netx/net/sourceforge/jnlp/security/KeyStores.java index 0c76ff2..e7a83d5 100644 --- a/netx/net/sourceforge/jnlp/security/KeyStores.java +++ b/netx/net/sourceforge/jnlp/security/KeyStores.java @@ -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; |