CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2014/05/18 05:36:24
Modified files:
lib/libssl/src/apps: asn1pars.c ca.c ciphers.c cms.c crl.c
crl2p7.c dgst.c dh.c dhparam.c dsa.c
dsaparam.c ec.c ecparam.c enc.c engine.c
errstr.c gendh.c gendsa.c genpkey.c
genrsa.c nseq.c ocsp.c openssl.c passwd.c
pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c
pkeyutl.c prime.c rand.c req.c rsa.c
rsautl.c s_client.c s_server.c s_time.c
sess_id.c smime.c speed.c spkac.c ts.c
verify.c version.c x509.c
Log message:
bio_err is initialised in main, hence there is no need to initialise it
in each application (since there is no longer a non-monolithic mode).
In typical OpenSSL fashion, the code is inconsistent and there are multiple
ways that bio_err was initialised - none of them actually checked to see if
the initialisation actually succeeded. Additionally, it is worth noting
that in at least two cases bio_err was also being used before it would have
been initialised.
ok miod@