From 9cf5f9b6aac4ad0f2d164ba95698e9f1dfc9a8ea Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Mon, 12 Jul 2010 19:00:16 +0200 Subject: [PATCH] src/graph_list.c: Use the new "graph_ident_intersect" function. The (slightly advanced) search appears to work now. --- src/graph_list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graph_list.c b/src/graph_list.c index a33697f..8ebf622 100644 --- a/src/graph_list.c +++ b/src/graph_list.c @@ -402,7 +402,7 @@ int gl_search (search_info_t *si, /* {{{ */ { int status; - if (!graph_matches_ident (gl_active[i], ident)) + if (!graph_ident_intersect (gl_active[i], ident)) continue; status = graph_search_inst (gl_active[i], si, @@ -416,7 +416,7 @@ int gl_search (search_info_t *si, /* {{{ */ { int status; - if (!graph_matches_ident (gl_dynamic[i], ident)) + if (!graph_ident_intersect (gl_dynamic[i], ident)) continue; status = graph_search_inst (gl_dynamic[i], si, -- 2.11.0