Minor wording changes

This commit is contained in:
Michael Kerrisk 2005-07-04 08:58:13 +00:00
parent d2cf948954
commit f936cf268d
2 changed files with 6 additions and 6 deletions

View File

@ -52,18 +52,18 @@ getgrnam, getgrnam_r, getgrgid, getgrgid_r \- get group file entry
The
.B getgrnam()
function returns a pointer to a structure containing
the broken-out fields of a record in the group database
the broken-out fields of the record in the group database
(e.g., the local group file
.IR /etc/group ,
NIS, and LDAP)
for the entry that matches the group name
that matches the group name
.IR name .
.PP
The
.B getgrgid()
function returns a pointer to a structure containing
the broken-out fields of the record in the group database
for the entry that matches the group ID
that matches the group ID
.IR gid .
.PP
The

View File

@ -53,18 +53,18 @@ getpwnam, getpwnam_r, getpwuid, getpwuid_r \- get password file entry
The
.B getpwnam()
function returns a pointer to a structure containing
the broken-out fields of a record in the password database
the broken-out fields of the record in the password database
(e.g., the local password file
.IR /etc/passwd ,
NIS, and LDAP)
for the entry that matches the user name
that matches the user name
.IR name .
.PP
The
.B getpwuid()
function returns a pointer to a structure containing
the broken-out fields of the record in the password database
for the entry that matches the user ID
that matches the user ID
.IR uid .
.PP
The