summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-12-14 22:17:37 +0000
committerwtchang%redhat.com <devnull@localhost>2005-12-14 22:17:37 +0000
commitad5d6d33382ccb7c54eb637939838e3315bf7476 (patch)
treeed3e460b4aeaf9117e8261f34d64a4fc4e763192
parent2f48d46f49fa876566fb487a09586fd04ba164c3 (diff)
downloadnss-hg-ad5d6d33382ccb7c54eb637939838e3315bf7476.tar.gz
Bugzilla Bug 319240: the value of ssl_V3_SUITES_IMPLEMENTED was off by 3
because it wasn't updated when we removed the three FORTEZZA cipher suites. r=nelsonb. Tag: NSS_3_11_BRANCH
-rw-r--r--security/nss/lib/ssl/sslimpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/lib/ssl/sslimpl.h b/security/nss/lib/ssl/sslimpl.h
index 45e7fa552..1da55d59b 100644
--- a/security/nss/lib/ssl/sslimpl.h
+++ b/security/nss/lib/ssl/sslimpl.h
@@ -270,9 +270,9 @@ typedef struct {
} ssl3CipherSuiteCfg;
#ifdef NSS_ENABLE_ECC
-#define ssl_V3_SUITES_IMPLEMENTED 40
+#define ssl_V3_SUITES_IMPLEMENTED 37
#else
-#define ssl_V3_SUITES_IMPLEMENTED 26
+#define ssl_V3_SUITES_IMPLEMENTED 23
#endif /* NSS_ENABLE_ECC */
typedef struct sslOptionsStr {