diff options
author | Omar Polo <op@omarpolo.com> | 2024-01-07 18:59:10 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-01-07 18:59:10 +0000 |
commit | 08e6d6ed7a98ec52da9fa6d34b9e3a2b0426b65f (patch) | |
tree | b3dd132bad1659c2d8263556523992fa6b6f49ef /compat | |
parent | 0c5dd8ffe9c67051ce79452fcdd7465043655645 (diff) |
mark private function as static
Diffstat (limited to 'compat')
-rw-r--r-- | compat/libtls/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/libtls/openssl.c b/compat/libtls/openssl.c index 8c0b5ed..3528887 100644 --- a/compat/libtls/openssl.c +++ b/compat/libtls/openssl.c @@ -31,7 +31,7 @@ X509_LOOKUP_METHOD * X509_LOOKUP_mem(void); -int +static int X509_STORE_load_mem(X509_STORE *ctx, void *buf, int len) { X509_LOOKUP *lookup; |