mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
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:
parent
76624df15f
commit
05f41859dd
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user