diff options
author | jmacd <jmacd@FreeBSD.org> | 1996-06-20 14:13:15 +0000 |
---|---|---|
committer | jmacd <jmacd@FreeBSD.org> | 1996-06-20 14:13:15 +0000 |
commit | 4f19282db200b9cbce2ab019ad8271988d231c12 (patch) | |
tree | f5c6da84790706b33966aae5010a1f7187070355 /lib | |
parent | 02631abd93269a026a5116182ebfd37336f67dc8 (diff) | |
download | FreeBSD-src-4f19282db200b9cbce2ab019ad8271988d231c12.zip FreeBSD-src-4f19282db200b9cbce2ab019ad8271988d231c12.tar.gz |
I hate to read a man page that almost has useful information
but falls a little short. I added a comment on the null
termination of struct group's gr_mem field.
Reviewed by: jkh
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/getgrent.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/getgrent.3 b/lib/libc/gen/getgrent.3 index fe73884..f89f092 100644 --- a/lib/libc/gen/getgrent.3 +++ b/lib/libc/gen/getgrent.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)getgrent.3 8.2 (Berkeley) 4/19/94 -.\" $Id: getgrent.3,v 1.3 1996/05/01 01:40:01 bde Exp $ +.\" $Id: getgrent.3,v 1.4 1996/05/23 01:04:14 mpp Exp $ .\" .Dd September 29, 1994 .Dt GETGRENT 3 @@ -77,7 +77,7 @@ struct group { char *gr_name; /* group name */ char *gr_passwd; /* group password */ gid_t gr_gid; /* group id */ - char **gr_mem; /* group members */ + char **gr_mem; /* null terminated list of group members */ }; .Ed .Pp |