From: Panu Matilainen Date: Mon, 31 Aug 2009 09:46:59 +0000 (+0300) Subject: Use rpmFileHasSuffix() instead of doing the same manually X-Git-Tag: rpm-4.8.0-beta1~366 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ff1cf55f4214f582808a2ad91d68332e0c7a87c;p=platform%2Fupstream%2Frpm.git Use rpmFileHasSuffix() instead of doing the same manually --- 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;