From 63bc262cd3575f7f8c6859b2dc63a27905d520c6 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Wed, 6 May 2015 10:22:38 +0200 Subject: [PATCH] unix.7: Remove mention of UNIX_PATH_MAX This kernel constant is not exposed to user space. Reported-by: Christophe Lohr Signed-off-by: Michael Kerrisk --- man7/unix.7 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man7/unix.7 b/man7/unix.7 index c3c6bdfed..97661c8ca 100644 --- a/man7/unix.7 +++ b/man7/unix.7 @@ -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