OLD | NEW |
1 diff -pu -r a/net/third_party/nss/ssl/ssl3ecc.c b/net/third_party/nss/ssl/ssl3ec
c.c | 1 diff -pu a/nss/lib/ssl/ssl3ecc.c b/nss/lib/ssl/ssl3ecc.c |
2 --- a/net/third_party/nss/ssl/ssl3ecc.c»2012-06-10 19:38:30.000000000 -0700 | 2 --- a/nss/lib/ssl/ssl3ecc.c» 2013-04-27 09:17:17.216390477 -0700 |
3 +++ b/net/third_party/nss/ssl/ssl3ecc.c»2012-11-12 15:57:59.222697369 -0800 | 3 +++ b/nss/lib/ssl/ssl3ecc.c» 2013-04-27 09:40:07.665786293 -0700 |
4 @@ -33,6 +33,15 @@ | 4 @@ -33,6 +33,15 @@ |
5 | 5 |
6 #ifdef NSS_ENABLE_ECC | 6 #ifdef NSS_ENABLE_ECC |
7 | 7 |
8 +/* | 8 +/* |
9 + * In NSS 3.13.2 the definition of the EC_POINT_FORM_UNCOMPRESSED macro | 9 + * In NSS 3.13.2 the definition of the EC_POINT_FORM_UNCOMPRESSED macro |
10 + * was moved from the internal header ec.h to the public header blapit.h. | 10 + * was moved from the internal header ec.h to the public header blapit.h. |
11 + * Define the macro here when compiling against older system NSS headers. | 11 + * Define the macro here when compiling against older system NSS headers. |
12 + */ | 12 + */ |
13 +#ifndef EC_POINT_FORM_UNCOMPRESSED | 13 +#ifndef EC_POINT_FORM_UNCOMPRESSED |
14 +#define EC_POINT_FORM_UNCOMPRESSED 0x04 | 14 +#define EC_POINT_FORM_UNCOMPRESSED 0x04 |
15 +#endif | 15 +#endif |
16 + | 16 + |
17 #ifndef PK11_SETATTRS | 17 #ifndef PK11_SETATTRS |
18 #define PK11_SETATTRS(x,id,v,l) (x)->type = (id); \ | 18 #define PK11_SETATTRS(x,id,v,l) (x)->type = (id); \ |
19 (x)->pValue=(v); (x)->ulValueLen = (l); | 19 (x)->pValue=(v); (x)->ulValueLen = (l); |
OLD | NEW |