diff --git a/ssh.go b/ssh.go index bb74e0d..e9169bf 100644 --- a/ssh.go +++ b/ssh.go @@ -15,7 +15,7 @@ import ( "strings" ) -func passwordAuth(username, password string) bool { +func passwordAuth(conn *ssh.ServerConn, username, password string) bool { if username == "admin" && password == "admin" { return true }