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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user