From 7501fc4f02ed5e88b8a94cdeabd6b2e181ab32df Mon Sep 17 00:00:00 2001
From: aaron <>
Date: Mon, 6 Nov 2000 01:03:25 +0000
Subject: The constant's name is MAXPATHLEN, not MAXPATHNAMELEN; closes
 PR/1491. From ianm@kashmir.cit.nepean.uws.edu.au.

---
 src/lib/libc/string/strlcpy.3 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/lib')

diff --git a/src/lib/libc/string/strlcpy.3 b/src/lib/libc/string/strlcpy.3
index ee7864db08..13db956d22 100644
--- a/src/lib/libc/string/strlcpy.3
+++ b/src/lib/libc/string/strlcpy.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: strlcpy.3,v 1.9 2000/10/18 05:12:07 aaron Exp $
+.\" $OpenBSD: strlcpy.3,v 1.10 2000/11/06 01:03:25 aaron Exp $
 .\"
 .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com>
 .\" All rights reserved.
@@ -132,7 +132,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];
 
 \&...
 
@@ -145,7 +145,7 @@ if (strlcat(pname, file, sizeof(pname)) >= sizeof(pname))
 Since we know how many characters we copied the first time, we can
 speed things up a bit by using a copy instead on an append:
 .Bd -literal -offset indent
-char *dir, *file, pname[MAXPATHNAMELEN];
+char *dir, *file, pname[MAXPATHLEN];
 size_t n;
 
 \&...
-- 
cgit v1.2.3-55-g6feb