summaryrefslogtreecommitdiff
path: root/security/nss/lib
diff options
context:
space:
mode:
authormcgreer%netscape.com <devnull@localhost>2000-05-18 15:28:43 +0000
committermcgreer%netscape.com <devnull@localhost>2000-05-18 15:28:43 +0000
commit2dd37fb9e393ebfd2d67df36931fdf724925117e (patch)
treec1175183d032ccb406f428627025deee157aa875 /security/nss/lib
parent62241c37c85821739f8a56e142c1e7afd921f877 (diff)
downloadnss-hg-2dd37fb9e393ebfd2d67df36931fdf724925117e.tar.gz
changing all MIN's and MAX's to PR_MIN, PR_MAX (MIN and MAX were defined in dbm).
Diffstat (limited to 'security/nss/lib')
-rw-r--r--security/nss/lib/cryptohi/seckey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/cryptohi/seckey.c b/security/nss/lib/cryptohi/seckey.c
index 4e1ba6734..a265ddb5f 100644
--- a/security/nss/lib/cryptohi/seckey.c
+++ b/security/nss/lib/cryptohi/seckey.c
@@ -965,7 +965,7 @@ SECKEY_PublicKeyStrength(SECKEYPublicKey *pubk)
return b0 ? pubk->u.dh.publicValue.len :
pubk->u.dh.publicValue.len - 1;
case fortezzaKey:
- return MAX(pubk->u.fortezza.KEAKey.len, pubk->u.fortezza.DSSKey.len);
+ return PR_MAX(pubk->u.fortezza.KEAKey.len, pubk->u.fortezza.DSSKey.len);
default:
break;
}