summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-21 12:00:41 +0000
committerMatt Caswell <matt@openssl.org>2016-03-21 14:42:46 +0000
commit8d9fb8c8dbdaad8c7e6009c96618b17aac9662b9 (patch)
tree381b3ef8faff51212cb044d97a9dbc5788afb409 /crypto/evp
parentdc110177defb6bd50cc2271f7e3590cc3ca04a52 (diff)
Fix no-seed
Fix compilation with --strict-warnings and no-seed Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/e_seed.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/evp/e_seed.c b/crypto/evp/e_seed.c
index f8523c38d9..6964b1e5b6 100644
--- a/crypto/evp/e_seed.c
+++ b/crypto/evp/e_seed.c
@@ -53,7 +53,9 @@
*/
#include <openssl/opensslconf.h>
-#ifndef OPENSSL_NO_SEED
+#ifdef OPENSSL_NO_SEED
+NON_EMPTY_TRANSLATION_UNIT
+#else
# include <openssl/evp.h>
# include <openssl/err.h>
# include <string.h>