Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
2d4772dc
Unverified
Commit
2d4772dc
authored
5 years ago
by
teor
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'tor-github/pr/951' into maint-0.3.5
parents
ef345ab5
8c4e6843
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug30190
+3
-0
3 additions, 0 deletions
changes/bug30190
src/lib/crypt_ops/crypto_openssl_mgt.c
+8
-0
8 additions, 0 deletions
src/lib/crypt_ops/crypto_openssl_mgt.c
with
11 additions
and
0 deletions
changes/bug30190
0 → 100644
+
3
−
0
View file @
2d4772dc
o Minor bugfixes (lib):
do not log a warning for OpenSSL versions that should be compatible
Fixes bug 30190; bugfix on 0.2.4.2-alpha
This diff is collapsed.
Click to expand it.
src/lib/crypt_ops/crypto_openssl_mgt.c
+
8
−
0
View file @
2d4772dc
...
...
@@ -213,6 +213,14 @@ crypto_openssl_early_init(void)
!
strcmp
(
version_str
,
OPENSSL_VERSION_TEXT
))
{
log_info
(
LD_CRYPTO
,
"OpenSSL version matches version from headers "
"(%lx: %s)."
,
version_num
,
version_str
);
}
else
if
((
version_num
&
0xffff0000
)
==
(
OPENSSL_VERSION_NUMBER
&
0xffff0000
))
{
log_notice
(
LD_CRYPTO
,
"We compiled with OpenSSL %lx: %s and we "
"are running with OpenSSL %lx: %s. "
"These two versions should be binary compatible."
,
(
unsigned
long
)
OPENSSL_VERSION_NUMBER
,
OPENSSL_VERSION_TEXT
,
version_num
,
version_str
);
}
else
{
log_warn
(
LD_CRYPTO
,
"OpenSSL version from headers does not match the "
"version we're running with. If you get weird crashes, that "
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment