diff options
author | EasySec <Easy.Sec@free.fr> | 2016-11-03 15:42:11 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-11-09 15:54:41 +0100 |
commit | 7380737d77e89edd17651b04e439223a47ea833e (patch) | |
tree | cfa82100821602c6431c15c9b14cbc816b67bdfd /test/dtls_mtu_test.c | |
parent | Ensure the key and iv labels are declared as static (diff) | |
download | openssl-7380737d77e89edd17651b04e439223a47ea833e.tar.xz openssl-7380737d77e89edd17651b04e439223a47ea833e.zip |
dtl_mtu_test doesn't follow BIO_* conventions and make Windows build fail
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/dtls_mtu_test.c')
-rw-r--r-- | test/dtls_mtu_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtls_mtu_test.c b/test/dtls_mtu_test.c index df1013ac51..da970a7fa7 100644 --- a/test/dtls_mtu_test.c +++ b/test/dtls_mtu_test.c @@ -26,7 +26,7 @@ static unsigned int clnt_psk_callback(SSL *ssl, const char *hint, unsigned char *psk, unsigned int max_psk_len) { - snprintf(ident, max_ident_len, "psk"); + BIO_snprintf(ident, max_ident_len, "psk"); if (max_psk_len > 20) max_psk_len = 20; |