Rename
CRYPTO_add_info => CRYPTO_push_info
CRYPTO_remove_info => CRYPTO_pop_info
in the hope that these names are more descriptive;
and "make update".
diff --git a/apps/openssl.c b/apps/openssl.c
index bbee18d..e910faf 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -237,8 +237,9 @@
ERR_free_strings();
#ifdef LEVITTE_DEBUG
- CRYPTO_add_info("Just to make sure I get a memory leak I can see :-)");
+ CRYPTO_push_info("Just to make sure I get a memory leak I can see :-)");
(void)Malloc(1024);
+ CRYPTO_pop_info();
#endif
CRYPTO_mem_leaks(bio_err);