diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-03 12:15:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-03 12:16:12 +0000 |
commit | 6e1045696741385fa028f93eef181aa1f9cb33c1 (patch) | |
tree | 53adcf5d08864a306e3a95de2decf25e9ab8a635 /src/search.c | |
parent | 8d44e8ed5c845700c1c19b88cac0bf1c8dee720c (diff) | |
download | aports-6e1045696741385fa028f93eef181aa1f9cb33c1.tar.bz2 aports-6e1045696741385fa028f93eef181aa1f9cb33c1.tar.xz |
search: use fnmatch so we have support for wildcards
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index dbbc2f4933..208cff17aa 100644 --- a/src/search.c +++ b/src/search.c @@ -9,6 +9,7 @@ * by the Free Software Foundation. See http://www.gnu.org/ for details. */ +#include <fnmatch.h> #include <stdio.h> #include "apk_defines.h" #include "apk_applet.h" @@ -46,7 +47,7 @@ static int search_query_print(apk_hash_item item, void *ctx) struct search_query_ctx *ictx = (struct search_query_ctx *) ctx; struct apk_package *pkg = (struct apk_package *) item; - if( strstr(pkg->name->name, ictx->query) == NULL ) + if (fnmatch(ictx->query, pkg->name->name, 0) != 0) return 0; search_list_print(item, ictx->db); |