diff options
Diffstat (limited to 'src/app_search.c')
-rw-r--r-- | src/app_search.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |