From 9ff1cf55f4214f582808a2ad91d68332e0c7a87c Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Mon, 31 Aug 2009 12:46:59 +0300 Subject: [PATCH] Use rpmFileHasSuffix() instead of doing the same manually --- lib/rpmgi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/rpmgi.c b/lib/rpmgi.c index 011076a..e53391b 100644 --- a/lib/rpmgi.c +++ b/lib/rpmgi.c @@ -212,7 +212,6 @@ static rpmRC rpmgiWalkPathFilter(rpmgi gi) { FTSENT * fts = gi->fts; rpmRC rpmrc = RPMRC_NOTFOUND; - const char * s; static const int indent = 2; @@ -225,8 +224,7 @@ rpmlog(RPMLOG_DEBUG, "FTS_%s\t%*s %s%s\n", ftsInfoStr(fts->fts_info), switch (fts->fts_info) { case FTS_F: /* Ignore all but *.rpm files. */ - s = fts->fts_name + fts->fts_namelen + 1 - sizeof(".rpm"); - if (strcmp(s, ".rpm")) + if (!rpmFileHasSuffix(fts->fts_name, ".rpm")) break; rpmrc = RPMRC_OK; break; -- 2.7.4