mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'maint-0.2.3'
This commit is contained in:
commit
a90affa84b
4
changes/bug7464
Normal file
4
changes/bug7464
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes:
|
||||
- Fix a harmless bug when opting against publishing a relay descriptor
|
||||
because DisableNetwork is set. Fixes bug 7464; bugfix on
|
||||
0.2.3.9-alpha.
|
@ -1218,7 +1218,7 @@ run_scheduled_events(time_t now)
|
||||
if (router_rebuild_descriptor(1)<0) {
|
||||
log_info(LD_CONFIG, "Couldn't rebuild router descriptor");
|
||||
}
|
||||
if (advertised_server_mode() & !options->DisableNetwork)
|
||||
if (advertised_server_mode() && !options->DisableNetwork)
|
||||
router_upload_dir_desc_to_dirservers(0);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user