From dd1f265a1adfe0474a5a29736e017a701e437a3f Mon Sep 17 00:00:00 2001 From: kris Date: Tue, 24 Jul 2001 11:34:22 +0000 Subject: Sync to OpenBSD (update comment and minor style change). Obtained from: OpenBSD MFC after: 1 week --- lib/libc/string/strlcat.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index c325ef3..405389c 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -42,10 +42,11 @@ static const char rcsid[] = * Appends src to string dst of size siz (unlike strncat, siz is the * full size of dst, not space left). At most siz-1 characters * will be copied. Always NUL terminates (unless siz <= strlen(dst)). - * Returns strlen(initial dst) + strlen(src); if retval >= siz, - * truncation occurred. + * Returns strlen(src) + MIN(siz, strlen(initial dst)). + * If retval >= siz, truncation occurred. */ -size_t strlcat(dst, src, siz) +size_t +strlcat(dst, src, siz) char *dst; const char *src; size_t siz; -- cgit v1.1