mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Fix snprintf missing for windows build
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11675)
This commit is contained in:
parent
588d5d01fe
commit
bb4f39114c
@ -11,6 +11,7 @@
|
||||
#include "internal/cryptlib.h"
|
||||
#include <openssl/conf.h>
|
||||
#include <openssl/x509v3.h>
|
||||
#include <openssl/bio.h>
|
||||
#include "ext_dat.h"
|
||||
|
||||
DEFINE_STACK_OF(CONF_VALUE)
|
||||
@ -126,7 +127,8 @@ STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method,
|
||||
break;
|
||||
default:
|
||||
if (OBJ_obj2txt(oline, sizeof(oline), gen->d.otherName->type_id, 0) > 0)
|
||||
snprintf(othername, sizeof(othername), "othername: %s:", oline);
|
||||
BIO_snprintf(othername, sizeof(othername), "othername: %s:",
|
||||
oline);
|
||||
else
|
||||
strncpy(othername, "othername:", sizeof(othername));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user