mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
cargo fmt fixes
This commit is contained in:
parent
3dfe8e6522
commit
cd8bcacfe1
@ -127,9 +127,11 @@ pub extern "C" fn protocol_list_supports_protocol_or_later(
|
||||
Err(_) => return 0,
|
||||
};
|
||||
|
||||
let is_supported =
|
||||
protover_string_supports_protocol_or_later(
|
||||
protocol_list, protocol, version);
|
||||
let is_supported = protover_string_supports_protocol_or_later(
|
||||
protocol_list,
|
||||
protocol,
|
||||
version,
|
||||
);
|
||||
|
||||
return if is_supported { 1 } else { 0 };
|
||||
}
|
||||
|
@ -496,9 +496,7 @@ fn find_range(list: &Vec<u32>) -> (bool, u32) {
|
||||
/// A `String` representation of this set in ascending order.
|
||||
///
|
||||
fn contract_protocol_list<'a>(supported_set: &'a HashSet<u32>) -> String {
|
||||
let mut supported: Vec<u32> = supported_set.iter()
|
||||
.map(|x| *x)
|
||||
.collect();
|
||||
let mut supported: Vec<u32> = supported_set.iter().map(|x| *x).collect();
|
||||
supported.sort();
|
||||
|
||||
let mut final_output: Vec<String> = Vec::new();
|
||||
|
Loading…
Reference in New Issue
Block a user