From: Andy Polyakov Date: Wed, 13 Apr 2005 21:48:12 +0000 (+0000) Subject: More cover-ups, removing OPENSSL_GLOBAL/EXTERNS. X-Git-Tag: BEN_FIPS_TEST_8~94 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0174c5685167574056d484ee2ec5ce68c04f6a26;p=oweals%2Fopenssl.git More cover-ups, removing OPENSSL_GLOBAL/EXTERNS. --- diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 631229558f..31cb207ed2 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -125,7 +125,7 @@ const char *SSL_version_str=OPENSSL_VERSION_TEXT; -OPENSSL_GLOBAL SSL3_ENC_METHOD ssl3_undef_enc_method={ +SSL3_ENC_METHOD ssl3_undef_enc_method={ /* evil casts, but these functions are only called if there's a library bug */ (int (*)(SSL *,int))ssl_undefined_function, (int (*)(SSL *, unsigned char *, int))ssl_undefined_function, diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 25a144a0d0..79cee72b77 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -462,7 +462,7 @@ typedef struct ssl3_comp_st COMP_METHOD *method; /* The method :-) */ } SSL3_COMP; -OPENSSL_EXTERN SSL3_ENC_METHOD ssl3_undef_enc_method; +extern SSL3_ENC_METHOD ssl3_undef_enc_method; OPENSSL_EXTERN SSL_CIPHER ssl2_ciphers[]; OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];