1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 18:53:20 +00:00

fix lints in windows ssh agent

This commit is contained in:
neuronull
2025-10-20 09:29:47 -06:00
parent b01a69e8d7
commit bcc0cd1fba

View File

@@ -45,11 +45,11 @@ impl NamedPipeServerStream {
loop {
info!("Waiting for connection");
select! {
_ = cancellation_token.cancelled() => {
() = cancellation_token.cancelled() => {
info!("[SSH Agent Native Module] Cancellation token triggered, stopping named pipe server");
break;
}
_ = listener.connect() => {
},
Ok(()) = listener.connect() => {
info!("[SSH Agent Native Module] Incoming connection");
let handle = HANDLE(listener.as_raw_handle());
let mut pid = 0;