Skip to content

Commit 9eb4812

Browse files
committed
auth.go gofmt -s
1 parent 80814f2 commit 9eb4812

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

auth.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ func PlainAuth(identity, username, password, host string) Auth {
5252
return &plainAuth{identity, username, password, host}
5353
}
5454

55-
5655
func (a *plainAuth) Start(server *ServerInfo) (string, []byte, error) {
5756
// Must have TLS, or else localhost server. Unencrypted connection is permitted here too but is not recommended
5857
// Note: If TLS is not true, then we can't trust ANYTHING in ServerInfo.
@@ -72,4 +71,4 @@ func (a *plainAuth) Next(fromServer []byte, more bool) ([]byte, error) {
7271
return nil, errors.New("unexpected server challenge")
7372
}
7473
return nil, nil
75-
}
74+
}

0 commit comments

Comments
 (0)