From 84e0e00805aca0530a8891975a8a04390df8945c Mon Sep 17 00:00:00 2001 From: Timo Teräs Date: Mon, 6 Mar 2023 21:37:29 +0200 Subject: db: case insensitive searches fixes #10871 --- src/app_search.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/app_search.c') diff --git a/src/app_search.c b/src/app_search.c index 6b27620..db4c398 100644 --- a/src/app_search.c +++ b/src/app_search.c @@ -117,8 +117,8 @@ static void print_result_pkg(struct search_ctx *ctx, struct apk_package *pkg) if (ctx->search_description) { foreach_array_item(pmatch, ctx->filter) { - if (fnmatch(*pmatch, pkg->description, 0) == 0 || - fnmatch(*pmatch, pkg->name->name, 0) == 0) + if (fnmatch(*pmatch, pkg->description, FNM_CASEFOLD) == 0 || + fnmatch(*pmatch, pkg->name->name, FNM_CASEFOLD) == 0) goto match; } return; -- cgit v1.2.3-60-g2f50