summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-11-19 11:29:58 +0000
committerKris Kennaway <kris@FreeBSD.org>2000-11-19 11:29:58 +0000
commitb05092e25a6dcfd4844d17224d28498e05a4ab7b (patch)
tree947040398a7b82383844471fbad0cab4c8bc32ca
parente10471bbba3ed15c56669de71807c1f6eb17d90d (diff)
Notes
-rw-r--r--lib/libc/string/strlcpy.32
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strlcpy.3 b/lib/libc/string/strlcpy.3
index 7ae3443e703a..0f2be7c34c67 100644
--- a/lib/libc/string/strlcpy.3
+++ b/lib/libc/string/strlcpy.3
@@ -114,7 +114,7 @@ char *s, *p, buf[BUFSIZ];
To detect truncation, perhaps while building a pathname, something
like the following might be used:
.Bd -literal -offset indent
-char *dir, *file, pname[MAXPATHNAMELEN];
+char *dir, *file, pname[MAXPATHLEN];
.Li ...