From 72a2a2b96199ec952f498992c7fd808d9e3b40f9 Mon Sep 17 00:00:00 2001 From: job <> Date: Thu, 2 Sep 2021 21:40:32 +0000 Subject: Change OPENSSL_strdup() to strdup() OK tb@ --- src/lib/libcrypto/x509/x509_asid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/x509/x509_asid.c b/src/lib/libcrypto/x509/x509_asid.c index 511002aab8..f35d5e9cf6 100644 --- a/src/lib/libcrypto/x509/x509_asid.c +++ b/src/lib/libcrypto/x509/x509_asid.c @@ -761,7 +761,7 @@ static void *v2i_ASIdentifiers(const struct v3_ext_method *method, goto err; } } else { - char *s = OPENSSL_strdup(val->value); + char *s = strdup(val->value); if (s == NULL) { X509V3error(ERR_R_MALLOC_FAILURE); goto err; -- cgit v1.2.3-55-g6feb