I forgot to continuation mark.
[oweals/openssl.git] / apps / engine.c
index 1a22d5dee9224df23e7e5cc79c02040c85eae08c..feee965325c1c8ecf8cda566c3c7943afae8a41e 100644 (file)
@@ -56,6 +56,8 @@
  *
  */
 
+#ifndef OPENSSL_NO_ENGINE
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -518,6 +520,7 @@ skip_digests:
 
        ret=0;
 end:
+
        ERR_print_errors(bio_err);
        sk_pop_free(engines, identity);
        sk_pop_free(pre_cmds, identity);
@@ -526,3 +529,10 @@ end:
        apps_shutdown();
        OPENSSL_EXIT(ret);
        }
+#else
+
+# if PEDANTIC
+static void *dummy=&dummy;
+# endif
+
+#endif