From 42141acc64f4e3be596a6a4a239aba4a78420588 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 1dcb7b6..ab51d6d 100644 --- a/src/app_search.c +++ b/src/app_search.c @@ -118,8 +118,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-70-g09d2