From: Volker Lendecke Date: Fri, 17 May 2024 14:07:44 +0000 (+0200) Subject: lib: Fix a typo X-Git-Tag: tdb-1.4.11~616 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27ac0beaa0140d55fcf01bd123904414e5071bfd;p=thirdparty%2Fsamba.git lib: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Andrew Bartlett --- diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 3ac1e554246..1591420587e 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -124,7 +124,7 @@ bool trim_char(char *s,char cfront,char cback) while ((ep >= fp) && (*ep == cback)) { ret = true; if ((ep > fp) && (((unsigned char)ep[-1]) & 0x80)) { - /* Could be mb... bail back to tim_string. */ + /* Could be mb... bail back to trim_string. */ char fs[2], bs[2]; if (cfront) { fs[0] = cfront;