The branch master has been updated
       via  2d5a82570ab424bcf2a738d05055eeb0b089b33a (commit)
      from  e9c2b100141631d614fe32cc1955a985c817286c (commit)


- Log -----------------------------------------------------------------
commit 2d5a82570ab424bcf2a738d05055eeb0b089b33a
Author: Richard Levitte <[email protected]>
Date:   Thu Apr 7 13:03:29 2016 +0200

    Better use BIO_snprintf() than snprintf(), in case the later isn't available
    
    Reviewed-by: Tim Hudson <[email protected]>

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

Summary of changes:
 test/ssl_test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/ssl_test.c b/test/ssl_test.c
index 499afd5..b95120e 100644
--- a/test/ssl_test.c
+++ b/test/ssl_test.c
@@ -186,8 +186,8 @@ static void tear_down(SSL_TEST_FIXTURE fixture)
 static int test_handshake(int idx)
 {
     SETUP_SSL_TEST_FIXTURE();
-    snprintf(fixture.test_app, sizeof(fixture.test_app),
-             "test-%d", idx);
+    BIO_snprintf(fixture.test_app, sizeof(fixture.test_app),
+                 "test-%d", idx);
     EXECUTE_SSL_TEST();
 }
 
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to