replaced snprintf with BIO version (for windows builds)
[openssl.git] / test / provider_test.c
index eefafcf5d5143ac5df61be202a2e6fe2ec008295..3de9266a993307aaed7b0626498d3f6439f6bb80 100644 (file)
@@ -32,7 +32,7 @@ static int test_provider(const char *name)
     const char *greeting = NULL;
     char expected_greeting[256];
 
-    snprintf(expected_greeting, sizeof(expected_greeting),
+    BIO_snprintf(expected_greeting, sizeof(expected_greeting),
              "Hello OpenSSL %.20s, greetings from %s!",
              OPENSSL_VERSION_STR, name);