From a18502d4cc1f66633d407354e7de99887e05960d Mon Sep 17 00:00:00 2001 From: HJ Date: Tue, 29 Jun 2021 09:41:19 +0000 Subject: [PATCH] =?UTF-8?q?=E5=85=BC=E5=AE=B9MUSL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crypto/o_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/o_str.c b/crypto/o_str.c index 9ad7a89dca..1eee816152 100755 --- a/crypto/o_str.c +++ b/crypto/o_str.c @@ -222,7 +222,7 @@ int openssl_strerror_r(int errnum, char *buf, size_t buflen) { #if defined(_MSC_VER) && _MSC_VER>=1400 return !strerror_s(buf, buflen, errnum); -#elif defined(_GNU_SOURCE) +#elif defined(_GNU_SOURCE) && !defined(__MUSL__) char *err; /* -- GitLab