summaryrefslogtreecommitdiffstats
path: root/base/common/src
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src')
-rw-r--r--base/common/src/com/netscape/cms/profile/def/NSCertTypeExtDefault.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/base/common/src/com/netscape/cms/profile/def/NSCertTypeExtDefault.java b/base/common/src/com/netscape/cms/profile/def/NSCertTypeExtDefault.java
index 1ad86ea5f..731581945 100644
--- a/base/common/src/com/netscape/cms/profile/def/NSCertTypeExtDefault.java
+++ b/base/common/src/com/netscape/cms/profile/def/NSCertTypeExtDefault.java
@@ -405,9 +405,10 @@ public class NSCertTypeExtDefault extends EnrollExtDefault {
bits[1] = getConfigBoolean(CONFIG_SSL_SERVER);
bits[2] = getConfigBoolean(CONFIG_EMAIL);
bits[3] = getConfigBoolean(CONFIG_OBJECT_SIGNING);
- bits[4] = getConfigBoolean(CONFIG_SSL_CA);
- bits[5] = getConfigBoolean(CONFIG_EMAIL_CA);
- bits[6] = getConfigBoolean(CONFIG_OBJECT_SIGNING_CA);
+ bits[4] = false;
+ bits[5] = getConfigBoolean(CONFIG_SSL_CA);
+ bits[6] = getConfigBoolean(CONFIG_EMAIL_CA);
+ bits[7] = getConfigBoolean(CONFIG_OBJECT_SIGNING_CA);
try {
ext = new NSCertTypeExtension(critical, bits);
} catch (Exception e) {