aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2002-02-22 21:21:18 +0000
committerDr. Stephen Henson <steve@openssl.org>2002-02-22 21:21:18 +0000
commit032c49b8b3bd732e1bfec6ac41cc3dad8663e503 (patch)
treededfb65989997df787aea78f8a003281335e1399 /apps
parent3208ff58ca59d143b49dd2f1c05fbc33cf35e64f (diff)
downloadopenssl-032c49b8b3bd732e1bfec6ac41cc3dad8663e503.tar.gz
non-Monolith fixes.
Submitted by Andrew W. Gray <agray@iconsinc.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.h1
-rw-r--r--apps/req.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/apps/apps.h b/apps/apps.h
index aad2862123..24aa447117 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -121,6 +121,7 @@
#include <openssl/lhash.h>
#include <openssl/conf.h>
#include <openssl/txt_db.h>
+#include <openssl/engine.h>
#include <openssl/ossl_typ.h>
int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn);
diff --git a/apps/req.c b/apps/req.c
index a6daf6287e..ba2167aabd 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -181,6 +181,7 @@ int MAIN(int argc, char **argv)
unsigned long chtype = MBSTRING_ASC;
#ifndef MONOLITH
MS_STATIC char config_name[256];
+ long errline;
#endif
req_conf = NULL;
@@ -529,7 +530,7 @@ bad:
}
default_config_file=p;
config=NCONF_new(NULL);
- i=NCONF_load(config, p);
+ i=NCONF_load(config, p, &errline);
#endif
if (template != NULL)