summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-02-18 02:38:41 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-02-18 02:38:41 +0000
commit94857b28e31c3ee2f2c9458d427eaf1157831489 (patch)
tree31866be14e1a9e473c37ce33167600d963209084 /lib/libc
parent6a8f6f7e65321bc3cd50c45e94ccfd656a46b50d (diff)
Notes
Diffstat (limited to 'lib/libc')
-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 c84cec5907a0..bc20d4595c10 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];
\&...