summaryrefslogtreecommitdiffstats
path: root/apps/pkcs12.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-18 15:56:06 +0000
committerMatt Caswell <matt@openssl.org>2016-03-18 17:07:11 +0000
commit96bea0002b44f1f490a798d6122d6b15d1fe6b09 (patch)
tree8483f3d6eca4c15f020ec3fc3384c418d29f529f /apps/pkcs12.c
parent40a8e9c2effc655413e8283fb31e7cffeeb6154a (diff)
Fix no-des
Numerous fixes for no-des. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/pkcs12.c')
-rw-r--r--apps/pkcs12.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/pkcs12.c b/apps/pkcs12.c
index 1fd1fad001..6657c4fcee 100644
--- a/apps/pkcs12.c
+++ b/apps/pkcs12.c
@@ -57,7 +57,9 @@
*/
#include <openssl/opensslconf.h>
-#if !defined(OPENSSL_NO_DES)
+#if defined(OPENSSL_NO_DES)
+NON_EMPTY_TRANSLATION_UNIT
+#else
# include <stdio.h>
# include <stdlib.h>