summaryrefslogtreecommitdiffstats
path: root/crypto/dh/dh_kdf.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-05 22:56:47 +0100
committerAndy Polyakov <appro@openssl.org>2015-01-07 18:39:39 +0100
commite464403d0bda2f1f74eb68582e4988e591c32433 (patch)
tree298ea5374f814ea1bdba21b9da3db08e37496366 /crypto/dh/dh_kdf.c
parent4138e3882556c762d77eb827b8be98507cde48df (diff)
Fix irix-cc build.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/dh/dh_kdf.c')
-rw-r--r--crypto/dh/dh_kdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dh_kdf.c b/crypto/dh/dh_kdf.c
index dbdd0b9ba6..cabc7a1260 100644
--- a/crypto/dh/dh_kdf.c
+++ b/crypto/dh/dh_kdf.c
@@ -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;