Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
93179f4e
Commit
93179f4e
authored
Sep 02, 2005
by
Roger Dingledine
Browse files
bugfix: moria2 wasn't listing itself as verified in its directory
svn:r4893
parent
ba899d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/or/routerlist.c
View file @
93179f4e
...
...
@@ -904,7 +904,10 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg)
if
(
router
->
published_on
<=
old_router
->
published_on
)
{
log_fn
(
LOG_DEBUG
,
"Skipping not-new descriptor for router '%s'"
,
router
->
nickname
);
if
(
!
authdir
)
{
if
(
authdir
)
{
/* Update the is_verified status based on our lookup. */
old_router
->
is_verified
=
router
->
is_verified
;
}
else
{
/* Update the is_running status to whatever we were told. */
old_router
->
is_running
=
router
->
is_running
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment