# HG changeset patch # User Jim Meyering # Date 1164028118 0 # Node ID 476857ef461125c0c869b15aeff9db8ba32a0656 # Parent e9f0493ee49f2e21c28720d2d06da34ebdcabc27 * lib/idcache.c: Adjust comments in user- and group- portions to be more accurate, and to be consistent with one another. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-20 Jim Meyering + + * lib/idcache.c: Adjust comments in user- and group- portions to + be more accurate, and to be consistent with one another. + 2006-11-20 Andreas Schwab (tiny change) Avoid syntax error in test program. diff --git a/lib/idcache.c b/lib/idcache.c --- a/lib/idcache.c +++ b/lib/idcache.c @@ -47,7 +47,7 @@ static struct userid *user_alist; -/* The members of this list have names not in the local passwd file. */ +/* Each entry on list is a user name for which the first lookup failed. */ static struct userid *nouser_alist; /* Translate UID to a login name, with cache, or NULL if unresolved. */ @@ -134,6 +134,8 @@ /* Use the same struct as for userids. */ static struct userid *group_alist; + +/* Each entry on list is a group name for which the first lookup failed. */ static struct userid *nogroup_alist; /* Translate GID to a group name, with cache, or NULL if unresolved. */