Fix strange formatting by indent
[oweals/openssl.git] / crypto / dh / dh_check.c
index b8469130045fa2363d338b9eb6e956612ef136bd..22f66c736ec205102ba5937821d5912437f8a0b3 100644 (file)
@@ -61,7 +61,8 @@
 #include <openssl/bn.h>
 #include <openssl/dh.h>
 
-/* Check that p is a safe prime and
+/*-
+ * Check that p is a safe prime and
  * if g is 2, 3 or 5, check that it is a suitable generator
  * where
  * for 2, p mod 24 == 11
@@ -70,6 +71,8 @@
  * should hold.
  */
 
+#ifndef OPENSSL_FIPS
+
 int DH_check(const DH *dh, int *ret)
        {
        int ok=0;
@@ -140,3 +143,5 @@ err:
        if (q != NULL) BN_free(q);
        return(ok);
        }
+
+#endif