Make sure that the 'config' variable is correctly defined and declared
authorRichard Levitte <levitte@openssl.org>
Wed, 9 Oct 2002 15:36:23 +0000 (15:36 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 9 Oct 2002 15:36:23 +0000 (15:36 +0000)
for monolithic as well as non-monolithic biuld.
More work is probably needed in this area.
PR: 144

apps/apps.h
apps/openssl.c

index 32a79605ee87ac3ea73442c8a718feb5822c6b7b..dae52bd016758bf034df94834a7e3f911656dbd4 100644 (file)
@@ -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
 
index 1c4a4291aa33f857754b6e01dc134f19e71208c8..d0937156766773662dac7bc667c8b1e15719842e 100644 (file)
@@ -139,11 +139,11 @@ static unsigned long MS_CALLBACK hash(const void *a_void);
 static int MS_CALLBACK cmp(const void *a_void,const void *b_void);
 static LHASH *prog_init(void );
 static int do_cmd(LHASH *prog,int argc,char *argv[]);
-CONF *config=NULL;
 char *default_config_file=NULL;
 
 /* Make sure there is only one when MONOLITH is defined */
 #ifdef MONOLITH
+CONF *config=NULL;
 BIO *bio_err=NULL;
 #endif