summaryrefslogtreecommitdiff
path: root/main/strlcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/strlcat.c')
-rw-r--r--main/strlcat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/strlcat.c b/main/strlcat.c
index 88cef70c56..f138c86c73 100644
--- a/main/strlcat.c
+++ b/main/strlcat.c
@@ -62,7 +62,7 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.17 2016/10/14 18:19:04 dtucker 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 <= strlen(dst)).
- * Returns strlen(src) + MIN(siz, strlen(initial dst).
+ * Returns strlen(src) + MIN(siz, strlen(initial dst).
* If retval >= siz, truncation occurred.
*/
PHPAPI size_t php_strlcat(dst, src, siz)