diff options
author | Jonathan Davies <jpds@protonmail.com> | 2023-05-09 20:49:34 +0100 |
---|---|---|
committer | Jonathan Davies <jpds@protonmail.com> | 2023-05-09 20:49:34 +0100 |
commit | c783194e8b8c3263fad579a85ea07d62e63b16be (patch) | |
tree | 362189dcfde317ef4dd0613ab621684469c17168 /src/util/forwarded_headers.rs | |
parent | b925f53dc3b0bae77aa3f73e581faace2eb3b21a (diff) | |
download | garage-c783194e8b8c3263fad579a85ea07d62e63b16be.tar.gz garage-c783194e8b8c3263fad579a85ea07d62e63b16be.zip |
*: apply clippy recommendations.
Diffstat (limited to 'src/util/forwarded_headers.rs')
-rw-r--r-- | src/util/forwarded_headers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/forwarded_headers.rs b/src/util/forwarded_headers.rs index 6ae275aa..12f76434 100644 --- a/src/util/forwarded_headers.rs +++ b/src/util/forwarded_headers.rs @@ -13,7 +13,7 @@ pub fn handle_forwarded_for_headers(headers: &HeaderMap<HeaderValue>) -> Result< .to_str() .ok_or_message("Error parsing X-Forwarded-For header")?; - let client_ip = IpAddr::from_str(&forwarded_for_ip_str) + let client_ip = IpAddr::from_str(forwarded_for_ip_str) .ok_or_message("Valid IP address not found in X-Forwarded-For header")?; Ok(client_ip.to_string()) |