| Index: nss/lib/softoken/lowkey.c
|
| diff --git a/nss/lib/softoken/lowkey.c b/nss/lib/softoken/lowkey.c
|
| index d0433421020f07cae2e0c6c4e3d5be81a02e08d4..b50ee1ffe5569cf46c99fbce7bfcf29d372977c6 100644
|
| --- a/nss/lib/softoken/lowkey.c
|
| +++ b/nss/lib/softoken/lowkey.c
|
| @@ -53,7 +53,7 @@ const SEC_ASN1Template nsslowkey_PQGParamsTemplate[] = {
|
| { SEC_ASN1_INTEGER, offsetof(PQGParams,prime) },
|
| { SEC_ASN1_INTEGER, offsetof(PQGParams,subPrime) },
|
| { SEC_ASN1_INTEGER, offsetof(PQGParams,base) },
|
| - { 0, }
|
| + { 0 }
|
| };
|
|
|
| const SEC_ASN1Template nsslowkey_RSAPrivateKeyTemplate[] = {
|
| @@ -75,7 +75,7 @@ const SEC_ASN1Template nsslowkey_DSAPrivateKeyTemplate[] = {
|
| { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(NSSLOWKEYPrivateKey) },
|
| { SEC_ASN1_INTEGER, offsetof(NSSLOWKEYPrivateKey,u.dsa.publicValue) },
|
| { SEC_ASN1_INTEGER, offsetof(NSSLOWKEYPrivateKey,u.dsa.privateValue) },
|
| - { 0, }
|
| + { 0 }
|
| };
|
|
|
| const SEC_ASN1Template nsslowkey_DSAPrivateKeyExportTemplate[] = {
|
| @@ -88,7 +88,7 @@ const SEC_ASN1Template nsslowkey_DHPrivateKeyTemplate[] = {
|
| { SEC_ASN1_INTEGER, offsetof(NSSLOWKEYPrivateKey,u.dh.privateValue) },
|
| { SEC_ASN1_INTEGER, offsetof(NSSLOWKEYPrivateKey,u.dh.base) },
|
| { SEC_ASN1_INTEGER, offsetof(NSSLOWKEYPrivateKey,u.dh.prime) },
|
| - { 0, }
|
| + { 0 }
|
| };
|
|
|
| #ifndef NSS_DISABLE_ECC
|
| @@ -102,7 +102,7 @@ const SEC_ASN1Template nsslowkey_DHPrivateKeyTemplate[] = {
|
| const SEC_ASN1Template nsslowkey_ECParamsTemplate[] = {
|
| { SEC_ASN1_CHOICE, offsetof(ECParams,type), NULL, sizeof(ECParams) },
|
| { SEC_ASN1_OBJECT_ID, offsetof(ECParams,curveOID), NULL, ec_params_named },
|
| - { 0, }
|
| + { 0 }
|
| };
|
|
|
|
|
| @@ -138,7 +138,7 @@ const SEC_ASN1Template nsslowkey_ECPrivateKeyTemplate[] = {
|
| SEC_ASN1_XTRN | 1,
|
| offsetof(NSSLOWKEYPrivateKey,u.ec.publicValue),
|
| SEC_ASN1_SUB(SEC_BitStringTemplate) },
|
| - { 0, }
|
| + { 0 }
|
| };
|
| #endif /* NSS_DISABLE_ECC */
|
| /*
|
|
|