mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
Tito writes: If the gecos field of an user is empty, obscure reports a false "similar to gecos" error.
This commit is contained in:
parent
91ed1a4a41
commit
83169c607b
@ -109,7 +109,7 @@ static const char *obscure_msg(const char *old_p, const char *new_p, const struc
|
||||
return "similar to username";
|
||||
}
|
||||
/* no gecos as-is, as sub-string, reversed, capitalized, doubled */
|
||||
if (string_checker(new_p, pw->pw_gecos)) {
|
||||
if (*pw->pw_gecos && string_checker(new_p, pw->pw_gecos)) {
|
||||
return "similar to gecos";
|
||||
}
|
||||
/* hostname as-is, as sub-string, reversed, capitalized, doubled */
|
||||
|
Loading…
Reference in New Issue
Block a user