summaryrefslogtreecommitdiff
path: root/cmd/fipstest
diff options
context:
space:
mode:
authorFranziskus Kiefer <franziskuskiefer@gmail.com>2015-11-10 09:42:27 -0800
committerFranziskus Kiefer <franziskuskiefer@gmail.com>2015-11-10 09:42:27 -0800
commita6e8db815fbd4f1e30cec3a4043d0cb7603c1e73 (patch)
tree39eaf03dfcf15d1a8ebf27781bb01e05098ac191 /cmd/fipstest
parent72ed17379bbc837e7329b526bcf61a6571298d95 (diff)
downloadnss-hg-a6e8db815fbd4f1e30cec3a4043d0cb7603c1e73.tar.gz
Bug 1118245. Apply uniform style across NSS [remove trailing commas in initializers]. r=ekr
Diffstat (limited to 'cmd/fipstest')
-rw-r--r--cmd/fipstest/fipstest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/fipstest/fipstest.c b/cmd/fipstest/fipstest.c
index 6a2cf2cc6..b5a5644bb 100644
--- a/cmd/fipstest/fipstest.c
+++ b/cmd/fipstest/fipstest.c
@@ -5344,9 +5344,9 @@ rsa_siggen_test(char *reqfn)
NSSLOWKEYPublicKey * rsa_public_key;
NSSLOWKEYPrivateKey * rsa_private_key;
NSSLOWKEYPrivateKey low_RSA_private_key = { NULL,
- NSSLOWKEYRSAKey, };
+ NSSLOWKEYRSAKey };
NSSLOWKEYPublicKey low_RSA_public_key = { NULL,
- NSSLOWKEYRSAKey, };
+ NSSLOWKEYRSAKey };
low_RSA_private_key.u.rsa = *rsaBlapiPrivKey;
low_RSA_public_key.u.rsa = *rsaBlapiPublicKey;
@@ -5610,7 +5610,7 @@ rsa_sigver_test(char *reqfn)
SECStatus rv = SECFailure;
NSSLOWKEYPublicKey * rsa_public_key;
NSSLOWKEYPublicKey low_RSA_public_key = { NULL,
- NSSLOWKEYRSAKey, };
+ NSSLOWKEYRSAKey };
/* convert to a low RSA public key */
low_RSA_public_key.u.rsa = rsaBlapiPublicKey;