FreeBSD has /dev/crypto as well.
[openssl.git] / crypto / engine / eng_all.c
index 6bb7e93bb2f9a7b0bd5b984518d444895c67acda..7cc05bfe0be2294a8afd1892df2d7edbab850b24 100644 (file)
@@ -97,19 +97,19 @@ void ENGINE_load_builtin_engines(void)
        ENGINE_load_4758cca();
 #endif
 #endif
        ENGINE_load_4758cca();
 #endif
 #endif
-#ifdef __OpenBSD__
+#if defined(__OpenBSD__) || defined(__FreeBSD__)
        ENGINE_load_cryptodev();
 #endif
 #endif
        }
 
        ENGINE_load_cryptodev();
 #endif
 #endif
        }
 
-#ifdef __OpenBSD__
-void ENGINE_setup_openbsd(void) {
-       static int openbsd_default_loaded = 0;
-       if (!openbsd_default_loaded) {
+#if defined(__OpenBSD__) || defined(__FreeBSD__)
+void ENGINE_setup_bsd_cryptodev(void) {
+       static int bsd_cryptodev_default_loaded = 0;
+       if (!bsd_cryptodev_default_loaded) {
                ENGINE_load_cryptodev();
                ENGINE_register_all_complete();
        }
                ENGINE_load_cryptodev();
                ENGINE_register_all_complete();
        }
-       openbsd_default_loaded=1;
+       bsd_cryptodev_default_loaded=1;
 }
 #endif
 }
 #endif