unix.7: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2018-07-15 09:57:11 +02:00
parent 879962006f
commit b65f4c691d
1 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ A UNIX domain socket address is represented in the following structure:
.\" .\"
struct sockaddr_un { struct sockaddr_un {
sa_family_t sun_family; /* AF_UNIX */ sa_family_t sun_family; /* AF_UNIX */
char sun_path[108]; /* pathname */ char sun_path[108]; /* Pathname */
}; };
.EE .EE
.in .in
@ -407,9 +407,9 @@ as follows:
.in +4n .in +4n
.EX .EX
struct ucred { struct ucred {
pid_t pid; /* process ID of the sending process */ pid_t pid; /* Process ID of the sending process */
uid_t uid; /* user ID of the sending process */ uid_t uid; /* User ID of the sending process */
gid_t gid; /* group ID of the sending process */ gid_t gid; /* Group ID of the sending process */
}; };
.EE .EE
.in .in