* lib/idcache.c: Adjust comments in user- and group- portions to
authorJim Meyering <jim@meyering.net>
Mon, 20 Nov 2006 13:08:38 +0000 (13:08 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 20 Nov 2006 13:08:38 +0000 (13:08 +0000)
be more accurate, and to be consistent with one another.

ChangeLog
lib/idcache.c

index bdfd4673bd344ca9f56687d0e7562fd96784c731..2e45646856bff954965583246bfb96cf31d8d71e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-20  Jim Meyering  <jim@meyering.net>
+
+       * 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  <schwab@suse.de>  (tiny change)
 
        Avoid syntax error in test program.
index 0398b69f1ae7511fdb3d73f5466efb74205720da..0706f007f57b33f3582eb842bc22ea3ba7cfa63e 100644 (file)
@@ -47,7 +47,7 @@ struct userid
 
 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 @@ getuidbyname (const char *user)
 
 /* 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.  */