summaryrefslogtreecommitdiff
path: root/src/app_search.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app_search.c')
-rw-r--r--src/app_search.c4
1 files changed, 2 insertions, 2 deletions
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;