The branch master has been updated
via 05f41859ddfff9b19f6599e545607f3d49630ce0 (commit)
from 76624df15fef0725f28a8b9d0f31256946669b1a (commit)
- Log -----------------------------------------------------------------
commit 05f41859ddfff9b19f6599e545607f3d49630ce0
Author: Jon Spillett <[email protected]>
Date: Thu Feb 4 15:13:18 2021 +1000
Switch to BIO_snprintf to avoid missing symbol problems on Windows
Reviewed-by: Ben Kaduk <[email protected]>
Reviewed-by: Shane Lontis <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/14063)
-----------------------------------------------------------------------
Summary of changes:
apps/lib/opt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/lib/opt.c b/apps/lib/opt.c
index 99499193e4..8cc520daec 100644
--- a/apps/lib/opt.c
+++ b/apps/lib/opt.c
@@ -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;
}