Reformat error

This commit is contained in:
Mickael Remond 2016-02-15 11:04:42 +01:00
parent 4d3463458e
commit dc30c70c17

View file

@ -18,7 +18,7 @@ func authSASL(socket io.ReadWriter, decoder *xml.Decoder, f streamFeatures, user
}
}
if !havePlain {
return errors.New(fmt.Sprintf("PLAIN authentication is not supported by server: %v", f.Mechanisms.Mechanism))
return fmt.Errorf("PLAIN authentication is not supported by server: %v", f.Mechanisms.Mechanism)
}
return authPlain(socket, decoder, user, password)