#119 make golangci-lint happy again

Since we are Go <1.20 compatible, we can't easily combine errors here. The suggested golangci-lint fix will not work neither, since the %w verb can't be used twice. Therefore, for now we will ignore the linting error

Closes #119
This commit is contained in:
Winni Neessen 2023-03-11 10:48:14 +01:00
parent 84bc888344
commit 44dce70c46
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -86,6 +86,10 @@ func NewClient(conn net.Conn, host string) (*Client, error) {
_, _, err := text.ReadResponse(220)
if err != nil {
if cerr := text.Close(); cerr != nil {
// Since we are being Go <1.20 compatible, we can't combine errorrs and
// duplicate %w vers are not suppored. Therefore let's ignore this linting
// error for now
// nolint:errorlint
return nil, fmt.Errorf("%w, %s", err, cerr)
}
return nil, err
@ -204,6 +208,10 @@ func (c *Client) Auth(a Auth) error {
mech, resp, err := a.Start(&ServerInfo{c.serverName, c.tls, c.auth})
if err != nil {
if qerr := c.Quit(); qerr != nil {
// Since we are being Go <1.20 compatible, we can't combine errorrs and
// duplicate %w vers are not suppored. Therefore let's ignore this linting
// error for now
// nolint:errorlint
return fmt.Errorf("%w, %s", err, qerr)
}
return err