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
72bfcb37
Commit
72bfcb37
authored
6 years ago
by
Deepesh Pathak
Committed by
Nick Mathewson
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add changes file and update check-typos in makefile
parent
48092540
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
ChangeLog
+1
-1
1 addition, 1 deletion
ChangeLog
Makefile.am
+3
-3
3 additions, 3 deletions
Makefile.am
changes/ticket25024
+3
-0
3 additions, 0 deletions
changes/ticket25024
src/common/crypto_rsa.h
+1
-1
1 addition, 1 deletion
src/common/crypto_rsa.h
src/or/protover.c
+1
-1
1 addition, 1 deletion
src/or/protover.c
with
9 additions
and
6 deletions
ChangeLog
+
1
−
1
View file @
72bfcb37
...
...
@@ -875,7 +875,7 @@ Changes in version 0.3.3.2-alpha - 2018-02-10
would call the Rust implementation of
protover_get_supported_protocols(). This was due to the C version
returning a static string, whereas the Rust version newly allocated
a CString to pass ac
c
ross the FFI boundary. Consequently, the C
a CString to pass across the FFI boundary. Consequently, the C
code was not expecting to need to free() what it was given. Fixes
bug 25127; bugfix on 0.3.2.1-alpha.
This diff is collapsed.
Click to expand it.
Makefile.am
+
3
−
3
View file @
72bfcb37
...
...
@@ -97,7 +97,7 @@ doxygen:
test
:
all
$(
top_builddir
)
/src/test/test
check-local
:
check-spaces check-changes
check-typos
check-local
:
check-spaces check-changes
need-chutney-path
:
@
if
test
!
-d
"
$$
CHUTNEY_PATH"
;
then
\
...
...
@@ -221,8 +221,8 @@ check-logs:
check-typos
:
@
if
test
-x
"
`
which misspell 2>&1
;
true
`
"
;
then
\
echo
"Checking for Typos ..."
;
\
(
`
which
misspell
`
\
$(
top_srcdir
)
/src/
*
*
/
*
.[ch]
\
(
misspell
\
$(
top_srcdir
)
/src/
[^e]
*
/
*
.[ch]
\
$(
top_srcdir
)
/doc
\
$(
top_srcdir
)
/contrib
\
$(
top_srcdir
)
/scripts
\
...
...
This diff is collapsed.
Click to expand it.
changes/ticket25024
0 → 100644
+
3
−
0
View file @
72bfcb37
o Minor features (code quality):
- Add spell checking using misspell in Makefile.
Closes ticket 25024.
This diff is collapsed.
Click to expand it.
src/common/crypto_rsa.h
+
1
−
1
View file @
72bfcb37
...
...
@@ -35,7 +35,7 @@
/** A public key, or a public/private key-pair. */
typedef
struct
crypto_pk_t
crypto_pk_t
;
/* RSA enviroment setup */
/* RSA enviro
n
ment setup */
MOCK_DECL
(
crypto_pk_t
*
,
crypto_pk_new
,(
void
));
void
crypto_pk_free_
(
crypto_pk_t
*
env
);
#define crypto_pk_free(pk) FREE_AND_NULL(crypto_pk_t, crypto_pk_free_, (pk))
...
...
This diff is collapsed.
Click to expand it.
src/or/protover.c
+
1
−
1
View file @
72bfcb37
...
...
@@ -715,7 +715,7 @@ protover_all_supported(const char *s, char **missing_out)
versions
->
high
=
i
;
}
/* If the last one to be unsupported is one less than the current
* one, we're in a continous range, so set the high field. */
* one, we're in a contin
u
ous range, so set the high field. */
if
((
versions
->
high
&&
versions
->
high
==
i
-
1
)
||
/* Similarly, if the last high wasn't set and we're currently
* one higher than the low, add current index as the highest
...
...
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