Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jpx40 committed Feb 25, 2024
1 parent cfc017e commit ca06bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion central/rsrem/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl Connection {
fn ping(&self) -> (bool, String, Option<IpAddr>) {
let mut ip: String = String::new();
let mut status: bool;
let mut r: (bool, String, Option<IpAddr>) = (false, String::new(), None);
let mut r: (bool, String, Option<IpAddr>);
match &self.host {
Some(i) => {
let check = ipaddress::IPAddress::is_valid(i.to_string());
Expand Down

0 comments on commit ca06bc5

Please sign in to comment.