Skip to content

Commit

Permalink
Fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzhang committed May 5, 2024
1 parent 42304da commit 6eb676e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sshx/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async fn start(args: Args) -> Result<()> {
// Trim domain information like .lan or .local
let host = host.split('.').next().unwrap_or(&host);
name += "@";
name += &host;
name += host;
}
name
});
Expand Down

0 comments on commit 6eb676e

Please sign in to comment.