aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2022-01-16 16:50:10 +0000
committerEd Maste <emaste@FreeBSD.org>2022-01-19 00:32:29 +0000
commite475c5f6ca278639821a4668ea2f1e515383efb7 (patch)
treec6152b902c64ba575edc8d31cfc62c4feae85a53 /lib/libc/string
parentd78723738bbc73bf0bf01ba8ff06113590935248 (diff)
libc: fix misleading comment in strstr
Obtained from: musl c53e9b239418 (cherry picked from commit c6750f07b43d18d39729570533f4ecb56da286bf)
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/strstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strstr.c b/lib/libc/string/strstr.c
index 72f8abb9e200..ce06db11f161 100644
--- a/lib/libc/string/strstr.c
+++ b/lib/libc/string/strstr.c
@@ -149,7 +149,7 @@ twoway_strstr(const unsigned char *h, const unsigned char *n)
for (;;) {
/* Update incremental end-of-haystack pointer */
if (z - h < l) {
- /* Fast estimate for MIN(l,63) */
+ /* Fast estimate for MAX(l,63) */
size_t grow = l | 63;
const unsigned char *z2 = memchr(z, 0, grow);
if (z2) {