On Tue, Jan 15, 2002 at 12:39:39PM -0500, Roth, Kevin P. wrote: > Thanks for the heads up. I downloaded and installed your update, and > tested, and curl still works, with no recompile needed. However, curl > outputs the openssl version as part of its --version output, and it > still says openssl 0.9.6b! I've got a question in to the curl developers > to see whether this is set at compile time or whether perhaps it could > be a bug in curl's treatment of the version number...
Look into the source. If there's a call to SSLeay() or SSLeay_version() it takes the version it's running under. grep for OPENSSL_VERSION_NUMBER. If it's just used as is in a printf() somewhere, curl reports the version it's linked against. The second is bad style. It should print either the current version using one of the above calls or it should report both versions, the linked and the current one. Anyway, it's good to hear that it still works. You checked an SSL connection? Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Developer mailto:[EMAIL PROTECTED] Red Hat, Inc.
