Commit e4e91084 authored by Richard Levitte's avatar Richard Levitte
Browse files

replaced snprintf with BIO version (for windows builds)

parent b6670f69
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ static const char *expected_greeting1(const char *name)
{
    static 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);