aboutsummaryrefslogtreecommitdiffstats
path: root/test/ossl_shim
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-10-17 15:45:34 -0400
committerRichard Levitte <levitte@openssl.org>2019-10-17 23:19:59 +0200
commit3d48457478bd61030c370e4090c1462fc4453d81 (patch)
treecf36ad0667881411cb5b02f44411c03e510e12f2 /test/ossl_shim
parent8c77d45adab101f10b323de3d59fb47b8f8d3a93 (diff)
downloadopenssl-3d48457478bd61030c370e4090c1462fc4453d81.tar.gz
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/ossl_shim')
-rw-r--r--test/ossl_shim/ossl_shim.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ossl_shim/ossl_shim.cc b/test/ossl_shim/ossl_shim.cc
index ae67fb58ef..ea1ff3a983 100644
--- a/test/ossl_shim/ossl_shim.cc
+++ b/test/ossl_shim/ossl_shim.cc
@@ -288,8 +288,8 @@ static unsigned PskClientCallback(SSL *ssl, const char *hint,
return 0;
}
- BUF_strlcpy(out_identity, config->psk_identity.c_str(),
- max_identity_len);
+ OPENSSL_strlcpy(out_identity, config->psk_identity.c_str(),
+ max_identity_len);
memcpy(out_psk, config->psk.data(), config->psk.size());
return config->psk.size();
}