summaryrefslogtreecommitdiff
path: root/security/nss/lib/crmf
diff options
context:
space:
mode:
authorjulien.pierre.bugs%sun.com <devnull@localhost>2007-07-06 03:16:56 +0000
committerjulien.pierre.bugs%sun.com <devnull@localhost>2007-07-06 03:16:56 +0000
commit8fbcdc32ad12ffdda17ccac5f2613eac004b7872 (patch)
tree1370b9d334c4eb0e34ada68599917fe6474470d6 /security/nss/lib/crmf
parent74d4ed191e5ee4634ef85a5e2ba0143588207070 (diff)
downloadnss-hg-8fbcdc32ad12ffdda17ccac5f2613eac004b7872.tar.gz
Fix for bug 90426 . Stop using obsolete int32 and uint32 typedefs . r=nelson
Diffstat (limited to 'security/nss/lib/crmf')
-rw-r--r--security/nss/lib/crmf/cmmfchal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/lib/crmf/cmmfchal.c b/security/nss/lib/crmf/cmmfchal.c
index 022b61d2e..8d2149b6d 100644
--- a/security/nss/lib/crmf/cmmfchal.c
+++ b/security/nss/lib/crmf/cmmfchal.c
@@ -75,12 +75,12 @@ cmmf_create_witness_and_challenge(PRArenaPool *poolp,
goto loser;
}
rv = PK11_HashBuf(SEC_OID_SHA1, randHash, encodedRandNum->data,
- (uint32)encodedRandNum->len);
+ (PRUint32)encodedRandNum->len);
if (rv != SECSuccess) {
goto loser;
}
rv = PK11_HashBuf(SEC_OID_SHA1, senderHash, senderDER->data,
- (uint32)senderDER->len);
+ (PRUint32)senderDER->len);
if (rv != SECSuccess) {
goto loser;
}