Use rpmFileHasSuffix() instead of doing the same manually

This commit is contained in:
Panu Matilainen 2009-08-31 12:46:59 +03:00
parent 746070ebe1
commit 9ff1cf55f4
1 changed files with 1 additions and 3 deletions

View File

@ -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;