aboutsummaryrefslogtreecommitdiffstats
path: root/man7/unix.7
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2015-05-06 10:22:38 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2015-05-06 10:22:38 +0200
commit63bc262cd3575f7f8c6859b2dc63a27905d520c6 (patch)
tree9ec93d476513e3995b585dec55b174e7feb46dfd /man7/unix.7
parent5d75650a151a57d6c712fbbf5c16659e367418bd (diff)
downloadman-pages-63bc262cd3575f7f8c6859b2dc63a27905d520c6.tar.gz
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>
Diffstat (limited to 'man7/unix.7')
-rw-r--r--man7/unix.76
1 files changed, 3 insertions, 3 deletions
diff --git a/man7/unix.7 b/man7/unix.7
index c3c6bdfed8..97661c8cab 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