mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
tor.cgi: Fixes deprecated tor option 'ExitNode' to 'ExitNodes'
If fingerprints in the Exit Node section are in usage, tor.cgi prints the deprecated option 'ExitNode' into torrc which leads to the following warning "The abbreviation ‘ExitNode’ is deprecated. Please use ‘ExitNodes’ instead". Fix has been found and tested in the community for reference please see --> https://community.ipfire.org/t/the-abbreviation-exitnode-is-deprecated-please-use-exitnodes-instead/10582/10 Signed-off-by: Erik Kapfer <erik.kapfer@ipfire.org>
This commit is contained in:
committed by
Peter Müller
parent
0b329e97da
commit
a913e1ebdd
@@ -790,7 +790,7 @@ sub BuildConfiguration() {
|
||||
|
||||
my @nodes = split(",", $settings{'TOR_USE_EXIT_NODES'});
|
||||
foreach (@nodes) {
|
||||
print FILE "ExitNode $_\n";
|
||||
print FILE "ExitNodes $_\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user