summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/bf/bftest.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcrypto/bf/bftest.c')
-rw-r--r--lib/libcrypto/bf/bftest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libcrypto/bf/bftest.c b/lib/libcrypto/bf/bftest.c
index 24d526b14bd..97e6634d37f 100644
--- a/lib/libcrypto/bf/bftest.c
+++ b/lib/libcrypto/bf/bftest.c
@@ -62,6 +62,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
+#include <openssl/opensslconf.h> /* To see if OPENSSL_NO_BF is defined */
#include "../e_os.h"
@@ -277,6 +278,9 @@ int main(int argc, char *argv[])
else
ret=test();
+#ifdef OPENSSL_SYS_NETWARE
+ if (ret) printf("ERROR: %d\n", ret);
+#endif
EXIT(ret);
return(0);
}