The branch master has been updated
       via  7380737d77e89edd17651b04e439223a47ea833e (commit)
      from  6925a94839794a6712db181bd1a8ccf948deb4ff (commit)


- Log -----------------------------------------------------------------
commit 7380737d77e89edd17651b04e439223a47ea833e
Author: EasySec <[email protected]>
Date:   Thu Nov 3 15:42:11 2016 +0100

    dtl_mtu_test doesn't follow BIO_* conventions and make Windows build fail
    
    Reviewed-by: Kurt Roeckx <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 test/dtls_mtu_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/dtls_mtu_test.c b/test/dtls_mtu_test.c
index df1013a..da970a7 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;
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to