setup: Fix typo in error message

This commit is contained in:
Björn Busse 2021-02-10 23:33:30 +01:00
parent 3edbb44fa3
commit 6ccf2fdd55

View File

@ -234,7 +234,7 @@ func ParseStanza(c *caddy.Controller) (*Ldap, error) {
// if neither username/password nor sasl are set
if ldap.username == "" && !ldap.sasl {
return nil, c.Err("authenticate either via username/pwassword or sasl")
return nil, c.Err("authenticate either via username/password or sasl")
}
return ldap, nil