replaced snprintf with BIO version (for windows builds)
authorRichard Levitte <levitte@openssl.org>
Wed, 3 Apr 2019 13:44:17 +0000 (15:44 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 3 Apr 2019 13:44:17 +0000 (15:44 +0200)
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8651)

test/provider_internal_test.c

index 54e6714ab13aed1b710a62851b22ddcb4c1ccbcd..f3006fe263388725ef76e0cb738be3efdd912b9c 100644 (file)
@@ -42,9 +42,9 @@ static const char *expected_greeting1(const char *name)
 {
     static char expected_greeting[256] = "";
 
 {
     static char expected_greeting[256] = "";
 
-    snprintf(expected_greeting, sizeof(expected_greeting),
-             "Hello OpenSSL %.20s, greetings from %s!",
-             OPENSSL_VERSION_STR, name);
+    BIO_snprintf(expected_greeting, sizeof(expected_greeting),
+                 "Hello OpenSSL %.20s, greetings from %s!",
+                 OPENSSL_VERSION_STR, name);
 
     return expected_greeting;
 }
 
     return expected_greeting;
 }