mirror of
https://github.com/curl/curl.git
synced 2026-07-23 17:27:22 +03:00
mbedtls: make TU-local variable static
mbedtls_x509_crt_profile_fr is only used locally. This fixes a missing-variable-declarations warning with clang.
This commit is contained in:
parent
769890c7e2
commit
10e02bc36a
1 changed files with 1 additions and 1 deletions
|
|
@ -131,7 +131,7 @@ static void mbed_debug(void *context, int level, const char *f_name,
|
|||
/*
|
||||
* profile
|
||||
*/
|
||||
const mbedtls_x509_crt_profile mbedtls_x509_crt_profile_fr =
|
||||
static const mbedtls_x509_crt_profile mbedtls_x509_crt_profile_fr =
|
||||
{
|
||||
/* Hashes from SHA-1 and above */
|
||||
MBEDTLS_X509_ID_FLAG(MBEDTLS_MD_SHA1) |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue