diff options
author | Benjamin Cohen <benjamin.cohen@orcam.com> | 2023-03-26 23:28:24 +0300 |
---|---|---|
committer | Benjamin Cohen <benjamin.cohen@orcam.com> | 2023-03-26 23:28:24 +0300 |
commit | 2880e7cfffdd2a5ab797f79dad4f2aa5e35234fd (patch) | |
tree | 235ca425b1eda1da0ffe8ff4b002cbe61755efa9 /src/supl-cert.c | |
parent | 2035c4db312c67f2cf2dc3518077b243c5acb98c (diff) |
Fix build on debian11debian11
Fix crypto-related undefined reference errors:
- add -lcrypto flag
- remove CRYPTO_mem_leaks() call
Diffstat (limited to 'src/supl-cert.c')
-rw-r--r-- | src/supl-cert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supl-cert.c b/src/supl-cert.c index 0f1a421..f6e3d6a 100644 --- a/src/supl-cert.c +++ b/src/supl-cert.c @@ -114,7 +114,7 @@ int main(int argc, char *argv[]) X509V3_EXT_cleanup(); OBJ_cleanup(); - CRYPTO_mem_leaks(bio_err); + //CRYPTO_mem_leaks(bio_err); BIO_free(bio_err); return(0); } |