summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-09 15:36:23 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-09 15:36:23 +0000
commit0e2cc42cfb4d09c19140f89853e3f0cf4d8c5142 (patch)
tree68305b60303d8c47854ea49b0c52dbecb214555e /apps/apps.h
parent1e5c205ccbcebdb5143fd4ebf6627143c51ea4e8 (diff)
Make sure that the 'config' variable is correctly defined and declared
for monolithic as well as non-monolithic biuld. More work is probably needed in this area. PR: 144
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 32a79605ee..dae52bd016 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -144,8 +144,10 @@ int WIN32_rename(char *oldname,char *newname);
#define MAIN(a,v) main(a,v)
#ifndef NON_MAIN
+CONF *config=NULL;
BIO *bio_err=NULL;
#else
+extern CONF *config;
extern BIO *bio_err;
#endif