Finally, remove a possibly disabled feature
[openssl.git] / apps / openssl.c
index 90f2223c70c40ecf5acc26d761e7cc71b2a696b0..d01731fb49f89a93e9c3ed0ca05167cfed9aba8e 100644 (file)
@@ -735,6 +735,9 @@ static void list_disabled(void)
 #ifdef OPENSSL_NO_CAST
     BIO_puts(bio_out, "CAST\n");
 #endif
+#ifdef OPENSSL_NO_CMAC
+    BIO_puts(bio_out, "CMAC\n");
+#endif
 #ifdef OPENSSL_NO_CMS
     BIO_puts(bio_out, "CMS\n");
 #endif
@@ -768,6 +771,9 @@ static void list_disabled(void)
 #ifdef OPENSSL_NO_GOST
     BIO_puts(bio_out, "GOST\n");
 #endif
+#ifdef OPENSSL_NO_HMAC
+    BIO_puts(bio_out, "HMAC\n");
+#endif
 #ifdef OPENSSL_NO_IDEA
     BIO_puts(bio_out, "IDEA\n");
 #endif
@@ -786,9 +792,6 @@ static void list_disabled(void)
 #ifdef OPENSSL_NO_MDC2
     BIO_puts(bio_out, "MDC2\n");
 #endif
-#ifdef OPENSSL_NO_MD_GHOST94
-    BIO_puts(bio_out, "MD_GHOST94\n");
-#endif
 #ifdef OPENSSL_NO_OCB
     BIO_puts(bio_out, "OCB\n");
 #endif