diff options
author | Eric Blake <eblake@redhat.com> | 2011-11-15 11:48:51 -0700 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2011-11-15 11:48:51 -0700 |
commit | 97842f0b9779b0f74a6560bf9c80870de1d3708d (patch) | |
tree | 21010e714602e75bc815904d752f8a79c18decc4 /src | |
parent | 47e511a1d0ee8c82d6e9014fb6a74ab6dfd89d3d (diff) | |
download | coreutils-97842f0b9779b0f74a6560bf9c80870de1d3708d.tar.xz |
id: tweak comment
* src/id.c (main): Replace confusing use of "etc.".
Diffstat (limited to 'src')
-rw-r--r-- | src/id.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -201,9 +201,9 @@ main (int argc, char **argv) } else { - /* POSIX says getuid etc. cannot fail, but they can fail under - GNU/Hurd and a few other systems. Test for failure by - checking errno. */ + /* POSIX says identification functions (getuid, getgid, and + others) cannot fail, but they can fail under GNU/Hurd and a + few other systems. Test for failure by checking errno. */ uid_t NO_UID = -1; gid_t NO_GID = -1; |