From: Josh Law Date: Sun, 1 Mar 2026 15:45:53 +0000 (+0000) Subject: lib: glob: fix grammar and replace non-inclusive terminology X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a1c3be1789580a8d15e810f8fb1958c7185680c;p=thirdparty%2Fkernel%2Fstable.git lib: glob: fix grammar and replace non-inclusive terminology Fix a missing article ('a') in the comment describing the glob implementation, and replace 'blacklists' with 'denylists' to align with the kernel's inclusive terminology guidelines. Link: https://lkml.kernel.org/r/20260301154553.2592681-1-objecting@objecting.org Signed-off-by: Josh Law Signed-off-by: Andrew Morton --- diff --git a/lib/glob.c b/lib/glob.c index d0654a5b6f0b..3e4a4b96f6d0 100644 --- a/lib/glob.c +++ b/lib/glob.c @@ -21,7 +21,7 @@ MODULE_LICENSE("Dual MIT/GPL"); * Pattern metacharacters are ?, *, [ and \. * (And, inside character classes, !, - and ].) * - * This is small and simple implementation intended for device blacklists + * This is a small and simple implementation intended for device denylists * where a string is matched against a number of patterns. Thus, it * does not preprocess the patterns. It is non-recursive, and run-time * is at most quadratic: strlen(@str)*strlen(@pat).