From e93bcc1d437a31f5abd3c2386beb1ec6cb99c9b9 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Mon, 6 Nov 2000 01:03:25 +0000 Subject: [PATCH] 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(-) diff --git a/src/lib/libc/string/strlcpy.3 b/src/lib/libc/string/strlcpy.3 index ee7864db..13db956d 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 .\" 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; \&...