summaryrefslogtreecommitdiffstats
path: root/security/nss/lib/nss/nssoptions.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/nss/lib/nss/nssoptions.c')
-rw-r--r--security/nss/lib/nss/nssoptions.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/security/nss/lib/nss/nssoptions.c b/security/nss/lib/nss/nssoptions.c
index 1339cede8..fc97d6278 100644
--- a/security/nss/lib/nss/nssoptions.c
+++ b/security/nss/lib/nss/nssoptions.c
@@ -23,7 +23,6 @@ struct nssOps {
PRInt32 tlsVersionMaxPolicy;
PRInt32 dtlsVersionMinPolicy;
PRInt32 dtlsVersionMaxPolicy;
- PRInt32 pkcs12DecodeForceUnicode;
};
static struct nssOps nss_ops = {
@@ -34,7 +33,6 @@ static struct nssOps nss_ops = {
0xffff, /* set TLS max to more than the largest legal SSL value */
1,
0xffff,
- PR_FALSE
};
SECStatus
@@ -64,9 +62,6 @@ NSS_OptionSet(PRInt32 which, PRInt32 value)
case NSS_DTLS_VERSION_MAX_POLICY:
nss_ops.dtlsVersionMaxPolicy = value;
break;
- case __NSS_PKCS12_DECODE_FORCE_UNICODE:
- nss_ops.pkcs12DecodeForceUnicode = value;
- break;
default:
rv = SECFailure;
}
@@ -101,9 +96,6 @@ NSS_OptionGet(PRInt32 which, PRInt32 *value)
case NSS_DTLS_VERSION_MAX_POLICY:
*value = nss_ops.dtlsVersionMaxPolicy;
break;
- case __NSS_PKCS12_DECODE_FORCE_UNICODE:
- *value = nss_ops.pkcs12DecodeForceUnicode;
- break;
default:
rv = SECFailure;
}