verifypw when used in a boolean TRUE context should be "all", not "any".

This commit is contained in:
Todd C. Miller
2004-11-28 21:05:38 +00:00
parent 57ab7279b1
commit f5c359ee06
2 changed files with 2 additions and 2 deletions

View File

@@ -15,8 +15,8 @@ static struct def_values def_data_listpw[] = {
static struct def_values def_data_verifypw[] = {
{ "never", never },
{ "any", any },
{ "all", all },
{ "any", any },
{ "always", always },
{ NULL, 0 },
};