From 9e44842a9a49ecd6190e046b6feb53dab1355c60 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 5 Jan 2024 18:59:11 +0900 Subject: [PATCH] string-util: fix typo Follow-up for 63566c6b6ffbb747727db4d6f78c28547430d54f. --- src/basic/string-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/string-util.c b/src/basic/string-util.c index 8b039ebd98..38ca04b859 100644 --- a/src/basic/string-util.c +++ b/src/basic/string-util.c @@ -1512,14 +1512,14 @@ char *strrstr(const char *haystack, const char *needle) { const char *f = NULL; size_t l; - /* Like strstr() but returns the last rather than the first occurence of "needle" in "haystack". */ + /* Like strstr() but returns the last rather than the first occurrence of "needle" in "haystack". */ if (!haystack || !needle) return NULL; l = strlen(needle); - /* Special case: for the empty string we return the very last possible occurence, i.e. *after* the + /* Special case: for the empty string we return the very last possible occurrence, i.e. *after* the * last char, not before. */ if (l == 0) return strchr(haystack, 0); -- 2.25.1