From e4ed0ba8604b3e79ff74cd579fd9f275424b4a14 Mon Sep 17 00:00:00 2001 From: "nelsonb%netscape.com" Date: Sat, 28 Jan 2006 02:38:07 +0000 Subject: [PATCH] Fix broken build, caused by c++ style comment in c code. --- security/nss/cmd/fipstest/fipstest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/security/nss/cmd/fipstest/fipstest.c b/security/nss/cmd/fipstest/fipstest.c index c1f20795a3f..e357222148c 100644 --- a/security/nss/cmd/fipstest/fipstest.c +++ b/security/nss/cmd/fipstest/fipstest.c @@ -45,6 +45,7 @@ #include "secoidt.h" #include "keythi.h" #include "ec.h" +#include "pqgutil.h" #if 0 #include "../../lib/freebl/mpi/mpi.h" #endif @@ -3587,7 +3588,7 @@ dsa_sigver_test(char *reqfn) "and 1024, inclusive"); goto loser; } - //calculate the size of p, g, and y then allocate items + /* calculate the size of p, g, and y then allocate items */ pgySize = modulus/8; SECITEM_AllocItem(NULL, &pubkey.params.prime, pgySize); SECITEM_AllocItem(NULL, &pubkey.params.base, pgySize);