Skip to content

Commit

Permalink
[skip ci] Fix Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicEric committed Dec 19, 2024
1 parent a7119f0 commit a4d756f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ async fn handle_ssh_connection(
config: &Arc<Config>,
server: &mut Arc<SandholeServer>,
) {
let config = Arc::clone(&config);
let config = Arc::clone(config);
let (tx, mut rx) = oneshot::channel::<()>();
let handler = server.new_client(Some(address), tx);
tokio::spawn(async move {
Expand Down

0 comments on commit a4d756f

Please sign in to comment.