diff options
author | appro <appro> | 2007-05-20 20:11:16 +0000 |
---|---|---|
committer | appro <appro> | 2007-05-20 20:11:16 +0000 |
commit | beb685fb17c777c7774ba46fc604e356415f78c6 (patch) | |
tree | f144098cbdd4b0d705fd4c1b51c9e08ac3a2834d /crypto/des/enc_read.c | |
parent | 45bc7020f5e79d85070a0839d0afe86201d53779 (diff) | |
download | openssl-beb685fb17c777c7774ba46fc604e356415f78c6.tar.gz |
OPENSSL_IMPLEMENT_GLOBAL caused more grief than it's worth (it's used twice
in legacy code). I'd rather just remove it along with legacy interface,
but it's probably not as appropriate as I'd like. Reimplement the macro.
Diffstat (limited to 'crypto/des/enc_read.c')
-rw-r--r-- | crypto/des/enc_read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c index ce82125b6..b86620f56 100644 --- a/crypto/des/enc_read.c +++ b/crypto/des/enc_read.c @@ -63,7 +63,7 @@ /* This has some uglies in it but it works - even over sockets. */ /*extern int errno;*/ -OPENSSL_IMPLEMENT_GLOBAL(int,DES_rw_mode)=DES_PCBC_MODE; +OPENSSL_IMPLEMENT_GLOBAL(int,DES_rw_mode,DES_PCBC_MODE) /* |