diff --git a/xmpp/auth.go b/xmpp/auth.go index 711e077..e8c0e42 100644 --- a/xmpp/auth.go +++ b/xmpp/auth.go @@ -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)