| OLD | NEW |
| (Empty) |
| 1 diff --git a/lib/ssl/ssl3ecc.c b/lib/ssl/ssl3ecc.c | |
| 2 index 94008a0..6d89bbe 100644 | |
| 3 --- a/lib/ssl/ssl3ecc.c | |
| 4 +++ b/lib/ssl/ssl3ecc.c | |
| 5 @@ -1093,6 +1093,7 @@ static const PRUint8 ecPtFmt[6] = { | |
| 6 static PRBool | |
| 7 ssl3_SuiteBOnly(sslSocket *ss) | |
| 8 { | |
| 9 +#if 0 | |
| 10 /* See if we can support small curves (like 163). If not, assume we can | |
| 11 * only support Suite-B curves (P-256, P-384, P-521). */ | |
| 12 PK11SlotInfo *slot = | |
| 13 @@ -1106,6 +1107,9 @@ ssl3_SuiteBOnly(sslSocket *ss) | |
| 14 /* we can, presume we can do all curves */ | |
| 15 PK11_FreeSlot(slot); | |
| 16 return PR_FALSE; | |
| 17 +#else | |
| 18 + return PR_TRUE; | |
| 19 +#endif | |
| 20 } | |
| 21 | |
| 22 /* Send our "canned" (precompiled) Supported Elliptic Curves extension, | |
| OLD | NEW |