summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-12-30 16:05:11 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-12-30 16:05:11 +0000
commitfca84dabe6090f31c96a600b9080507f17efeb6e (patch)
tree430872a5507b49997ef65ccd239010fb8d9541cc
parent3ea1e135695c75e920a034bf8b6f576261333051 (diff)
downloadopenssl-new-fca84dabe6090f31c96a600b9080507f17efeb6e.tar.gz
make no-comp compile
-rw-r--r--crypto/err/err_all.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index edafdc0c17..06e5e59dba 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -129,7 +129,9 @@ void ERR_load_crypto_strings(void)
ERR_load_ASN1_strings();
ERR_load_CONF_strings();
ERR_load_CRYPTO_strings();
+#ifndef OPENSSL_NO_COMP
ERR_load_COMP_strings();
+#endif
#ifndef OPENSSL_NO_EC
ERR_load_EC_strings();
#endif
@@ -161,6 +163,5 @@ void ERR_load_crypto_strings(void)
#ifndef OPENSSL_NO_JPAKE
ERR_load_JPAKE_strings();
#endif
- ERR_load_COMP_strings();
#endif
}