diff --git a/[refs] b/[refs] index 7475c88c7c0a..2537551b427a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: bbde588bfacb990542eed043d89c8591d4ae9211 +refs/heads/master: ea187cfbb9a3de73e7bd7b7125ae345d92d4384b diff --git a/trunk/tools/perf/util/string.c b/trunk/tools/perf/util/string.c index 0409fc7c0058..8fc0bd3a3a4a 100644 --- a/trunk/tools/perf/util/string.c +++ b/trunk/tools/perf/util/string.c @@ -259,7 +259,7 @@ static bool __match_glob(const char *str, const char *pat, bool ignore_space) if (!*pat) /* Tail wild card matches all */ return true; while (*str) - if (strglobmatch(str++, pat)) + if (__match_glob(str++, pat, ignore_space)) return true; } return !*str && !*pat;