Skip to content

Commit

Permalink
Fix ssh daemon on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten committed Feb 3, 2024
1 parent 1e24bce commit 599cc10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agent/ssh/sshsocketwindows.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package ssh

import (
"github.com/Microsoft/go-winio"

Check failure on line 6 in agent/ssh/sshsocketwindows.go

View workflow job for this annotation

GitHub Actions / build_windows_x86_64

no required module provides package github.com/Microsoft/go-winio; to add it:
"github.com/quexten/goldwarden/agent/sockets"
"golang.org/x/crypto/ssh/agent"
)
Expand All @@ -15,7 +16,7 @@ func (v SSHAgentServer) Serve() {
log.Fatal("listen error:", err)
}
defer l.Close()
log.Printf("Server listening on named pipe %v\n", pipePath)
log.Info("Server listening on named pipe %v\n", pipePath)

for {
conn, err := l.Accept()
Expand Down

0 comments on commit 599cc10

Please sign in to comment.