Change user matching to ignore wildcards on password failure.

This commit is contained in:
Juliusz Chroboczek
2020-04-25 19:08:14 +02:00
parent 2e841c082e
commit 965b59c9d5
+5 -1
View File
@@ -308,7 +308,11 @@ type groupUser struct {
func matchUser(user, pass string, users []groupUser) (bool, bool) {
for _, u := range users {
if u.Username == "" || u.Username == user {
if u.Username == "" {
if u.Password == "" || u.Password == pass {
return true, true
}
} else if u.Username == user {
return true, (u.Password == "" || u.Password == pass)
}
}