Switch to BIO_snprintf to avoid missing symbol problems on Windows

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14063)
This commit is contained in:
Jon Spillett 2021-02-04 15:13:18 +10:00 committed by Shane Lontis
parent 76624df15f
commit 05f41859dd

View File

@ -143,7 +143,7 @@ char *opt_appname(const char *arg0)
size_t len = strlen(prog);
if (arg0 != NULL)
snprintf(prog + len, sizeof(prog) - len - 1, " %s", arg0);
BIO_snprintf(prog + len, sizeof(prog) - len - 1, " %s", arg0);
return prog;
}