From ec37fa13b410764298c987ad53961c0728080b95 Mon Sep 17 00:00:00 2001 From: okan Date: Sat, 9 Mar 2013 21:55:56 +0000 Subject: replace handrolled for loop with TAILQ_FOREACH; from andres.p@zoho.com --- search.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/search.c b/search.c index 9e22329..f7abb84 100644 --- a/search.c +++ b/search.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: search.c,v 1.26 2012/11/09 03:52:02 okan Exp $ + * $OpenBSD: search.c,v 1.27 2013/03/09 21:55:56 okan Exp $ */ #include @@ -223,9 +223,8 @@ search_match_exec(struct menu_q *menuq, struct menu_q *resultq, char *search) TAILQ_FOREACH(mi, menuq, entry) { if (strsubmatch(search, mi->text, 1) == 0 && fnmatch(search, mi->text, 0) == FNM_NOMATCH) - continue; - for (mj = TAILQ_FIRST(resultq); mj != NULL; - mj = TAILQ_NEXT(mj, resultentry)) { + continue; + TAILQ_FOREACH(mj, resultq, resultentry) { if (strcasecmp(mi->text, mj->text) < 0) { TAILQ_INSERT_BEFORE(mj, mi, resultentry); break; -- cgit v1.2.3-2-gb3c3