aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/security/KeyStore.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/security/KeyStore.java')
-rw-r--r--libjava/classpath/java/security/KeyStore.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/classpath/java/security/KeyStore.java b/libjava/classpath/java/security/KeyStore.java
index 6964487..8681d82 100644
--- a/libjava/classpath/java/security/KeyStore.java
+++ b/libjava/classpath/java/security/KeyStore.java
@@ -212,7 +212,7 @@ public class KeyStore
/**
* Returns the default KeyStore type. This method looks up the
* type in <JAVA_HOME>/lib/security/java.security with the
- * property "keystore.type" or if that fails then "jks" .
+ * property "keystore.type" or if that fails then "gkr" .
*/
public static final String getDefaultType()
{
@@ -221,7 +221,7 @@ public class KeyStore
String tmp = Security.getProperty("keystore.type");
if (tmp == null)
- tmp = "jks";
+ tmp = "gkr";
return tmp;
}