Commit a844e27b authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

Tidy up some code formatting.

parent 0783bf15
Loading
Loading
Loading
Loading
+18 −18
Original line number Diff line number Diff line
@@ -53,12 +53,12 @@
 *
 */

#ifdef OPENSSL_OPENBSD_DEV_CRYPTO

#include <openssl/engine.h>
#include <openssl/evp.h>
#include "engine_int.h"

#ifdef OPENSSL_OPENBSD_DEV_CRYPTO

static void load_ciphers(ENGINE *e)
	{
	ENGINE_add_cipher(e,EVP_dev_crypto_des_ede3_cbc());
@@ -69,8 +69,8 @@ ENGINE *ENGINE_openbsd_dev_crypto(void)
	{
	ENGINE *engine=ENGINE_new();

    if(!ENGINE_set_id(engine,"openbsd_dev_crypto")
       || !ENGINE_set_name(engine,"OpenBSD /dev/crypto"))
	if(!ENGINE_set_id(engine,"openbsd_dev_crypto") ||
			!ENGINE_set_name(engine,"OpenBSD /dev/crypto"))
		{
		ENGINE_free(engine);
		return NULL;
@@ -80,4 +80,4 @@ ENGINE *ENGINE_openbsd_dev_crypto(void)
	return engine;
	}

#endif
#endif /* defined(OPENSSL_OPENBSD_DEV_CRYPTO) */