summaryrefslogtreecommitdiffstats
path: root/test/sslcorrupttest.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-10-17 21:45:34 +0200
committerRichard Levitte <levitte@openssl.org>2019-10-17 23:19:59 +0200
commit3d48457478bd61030c370e4090c1462fc4453d81 (patch)
treecf36ad0667881411cb5b02f44411c03e510e12f2 /test/sslcorrupttest.c
parentMove BLAKE2 digests completely to the default provider (diff)
downloadopenssl-3d48457478bd61030c370e4090c1462fc4453d81.tar.xz
openssl-3d48457478bd61030c370e4090c1462fc4453d81.zip
Replace BUF_ string function calls with OPENSSL_ ones
Deprecate the BUF_ string macros Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10207)
Diffstat (limited to 'test/sslcorrupttest.c')
-rw-r--r--test/sslcorrupttest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sslcorrupttest.c b/test/sslcorrupttest.c
index bffccc86d2..66f8cd142c 100644
--- a/test/sslcorrupttest.c
+++ b/test/sslcorrupttest.c
@@ -41,7 +41,7 @@ static int tls_corrupt_write(BIO *bio, const char *in, int inl)
char *copy;
if (docorrupt) {
- if (!TEST_ptr(copy = BUF_memdup(in, inl)))
+ if (!TEST_ptr(copy = OPENSSL_memdup(in, inl)))
return 0;
/* corrupt last bit of application data */
copy[inl-1] ^= 1;