Fix irix-cc build.

Reviewed-by: Matt Caswell <matt@openssl.org>
(cherry picked from commit e464403d0b)
This commit is contained in:
Andy Polyakov
2015-01-05 22:56:47 +01:00
parent cfb5d6c10a
commit 2d63d0c84a
4 changed files with 4 additions and 4 deletions

View File

@@ -131,7 +131,7 @@ static int dh_sharedinfo_encode(unsigned char **pder, unsigned char **pctr,
return 0;
if (!skip_asn1(&p, &tlen, V_ASN1_OCTET_STRING))
return 0;
if (memcmp(p, ctr, 4))
if (CRYPTO_memcmp(p, ctr, 4))
return 0;
*pctr = p;
return derlen;