diff options
author | 2001-01-13 16:17:24 +0000 | |
---|---|---|
committer | 2001-01-13 16:17:24 +0000 | |
commit | fe5157fdd47146f2a3a403cd97aa09797ccc8ffd (patch) | |
tree | c749f804e0008b809b4666d07295a8f0d4636edd /lib/libc/string/strlcat.c | |
parent | Let SYNOPSIS look OpenBSDish and not outlandish. (diff) | |
download | wireguard-openbsd-fe5157fdd47146f2a3a403cd97aa09797ccc8ffd.tar.xz wireguard-openbsd-fe5157fdd47146f2a3a403cd97aa09797ccc8ffd.zip |
Sync function comment with man page; fanf@covalent.net
Diffstat (limited to 'lib/libc/string/strlcat.c')
-rw-r--r-- | lib/libc/string/strlcat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index 5a23ef285c3..39125393ced 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strlcat.c,v 1.4 2001/01/12 22:55:23 millert Exp $ */ +/* $OpenBSD: strlcat.c,v 1.5 2001/01/13 16:17:24 millert Exp $ */ /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlcat.c,v 1.4 2001/01/12 22:55:23 millert Exp $"; +static char *rcsid = "$OpenBSD: strlcat.c,v 1.5 2001/01/13 16:17:24 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -37,7 +37,7 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.4 2001/01/12 22:55:23 millert Exp /* * 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 == 0). + * will be copied. Always NUL terminates (unless siz <= strlen(dst)). * Returns strlen(initial dst) + strlen(src); if retval >= siz, * truncation occurred. */ |