Skip to content

Commit 43238e7

Browse files
Fixup rename local variable
1 parent 574c0f3 commit 43238e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

talpid-core/src/offline/linux.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ async fn public_ip_unreachable(
9898
.map_err(Error::RouteManagerError)
9999
.map(|x| x.is_some())
100100
};
101-
let conn_info = Connectivity::Status {
101+
let connectivity = Connectivity::Status {
102102
ipv4: route_exists(PUBLIC_INTERNET_ADDRESS_V4).await?,
103103
ipv6: route_exists(PUBLIC_INTERNET_ADDRESS_V6).await?,
104104
};
105-
Ok(conn_info)
105+
Ok(connectivity)
106106
}

0 commit comments

Comments
 (0)