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
3ca10bb6
Commit
3ca10bb6
authored
15 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Fix-ups for dynamic OpenSSL engine patch.
Include a changelog, and don't try to compare strings with !=.
parent
65836d24
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
ChangeLog
+5
-1
5 additions, 1 deletion
ChangeLog
src/or/config.c
+2
-2
2 additions, 2 deletions
src/or/config.c
with
7 additions
and
3 deletions
ChangeLog
+
5
−
1
View file @
3ca10bb6
Changes in version 0.2.2.1-alpha - 2009-??-??
o Minor features
o Major features:
- Add support for dynamic OpenSSL hardware crypto acceleration engines
via new AccelName and AccelDir options.
o Minor features:
- New --digests command-line switch to output the digests of the
source files Tor was built with.
- The "torify" script now uses torsocks where available.
...
...
This diff is collapsed.
Click to expand it.
src/or/config.c
+
2
−
2
View file @
3ca10bb6
...
...
@@ -3671,8 +3671,8 @@ options_transition_allowed(or_options_t *old, or_options_t *new_val,
}
if
((
old
->
HardwareAccel
!=
new_val
->
HardwareAccel
)
||
(
old
->
AccelName
!=
new_val
->
AccelName
)
||
(
old
->
AccelDir
!=
new_val
->
AccelDir
))
{
||
!
opt_streq
(
old
->
AccelName
,
new_val
->
AccelName
)
||
!
opt_streq
(
old
->
AccelDir
,
new_val
->
AccelDir
))
{
*
msg
=
tor_strdup
(
"While Tor is running, changing OpenSSL hardware "
"acceleration engine is not allowed."
);
return
-
1
;
...
...
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