tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 6d2e4dea109ec5a499d11a4fee4f8ca3465ad30c
parent 59d4505749073f45db9a32d606b760eb9e07df69
Author: Corey Farwell <coreyf@rwell.org>
Date:   Sun, 24 Jun 2018 22:45:07 -0400

Utilize type param in method invocation.

Diffstat:
Msrc/rust/protover/ffi.rs | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/rust/protover/ffi.rs b/src/rust/protover/ffi.rs @@ -129,10 +129,7 @@ pub extern "C" fn protover_contains_long_protocol_names_( Err(_) => return 1 }; - let protocol_entry : Result<UnvalidatedProtoEntry,_> = - protocol_list.parse(); - - match protocol_entry { + match protocol_list.parse::<UnvalidatedProtoEntry>() { Ok(_) => 0, Err(_) => 1, }