Commit dd40b200 authored by Richard Levitte's avatar Richard Levitte
Browse files

Remove the flag variable in OpenSSL_add_all_ciphers() and

OpenSSL_add_all_digests(), as it doesn't really serve any
sensible purpose.
PR: 261
parent 74766c6e
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -64,10 +64,6 @@

void OpenSSL_add_all_ciphers(void)
	{
	static int done=0;

	if (done) return;
	done=1;
#ifndef NO_DES
	EVP_add_cipher(EVP_des_cfb());
	EVP_add_cipher(EVP_des_ede_cfb());
+0 −4
Original line number Diff line number Diff line
@@ -64,10 +64,6 @@

void OpenSSL_add_all_digests(void)
	{
	static int done=0;

	if (done) return;
	done=1;
#ifndef NO_MD2
	EVP_add_digest(EVP_md2());
#endif