unix.7: Remove mention of UNIX_PATH_MAX

This kernel constant is not exposed to user space.

Reported-by: Christophe Lohr <Christophe.Lohr@telecom-bretagne.eu>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2015-05-06 10:22:38 +02:00
parent 5d75650a15
commit 63bc262cd3
1 changed files with 3 additions and 3 deletions

View File

@ -59,11 +59,11 @@ A UNIX domain socket address is represented in the following structure:
.in +4n
.nf
#define UNIX_PATH_MAX 108
.\" #define UNIX_PATH_MAX 108
.\"
struct sockaddr_un {
sa_family_t sun_family; /* AF_UNIX */
char sun_path[UNIX_PATH_MAX]; /* pathname */
char sun_path[108]; /* pathname */
};
.fi
.in