summaryrefslogtreecommitdiff
path: root/build/rpmfc.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-12-10 16:32:27 +0000
committerjbj <devnull@localhost>2002-12-10 16:32:27 +0000
commitc663b52bda675da4156476aa6154b439d89d6d13 (patch)
tree1bf49b865add1d7c601c21fc0d0a4472afd40cf2 /build/rpmfc.c
parentc6dcee8ac6daa501de3ce727758d50b0807d868c (diff)
downloadlibrpm-tizen-c663b52bda675da4156476aa6154b439d89d6d13.tar.gz
librpm-tizen-c663b52bda675da4156476aa6154b439d89d6d13.tar.bz2
librpm-tizen-c663b52bda675da4156476aa6154b439d89d6d13.zip
Repair fc->skipReq insertion typo.
CVS patchset: 5929 CVS date: 2002/12/10 16:32:27
Diffstat (limited to 'build/rpmfc.c')
-rw-r--r--build/rpmfc.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/build/rpmfc.c b/build/rpmfc.c
index 768496798..427c4789f 100644
--- a/build/rpmfc.c
+++ b/build/rpmfc.c
@@ -19,9 +19,6 @@
/*@access fmagic @*/
/*@access rpmds @*/
-/*@unchecked@*/
-int _rpmfc_debug;
-
/**
*/
/*@-bounds@*/ /* LCL: internal error */
@@ -561,14 +558,20 @@ assert(fx < fc->fddictn->nvals);
assert(depval != NULL);
/*@switchbreak@*/ break;
case 'P':
+ if (nprovides > 0) {
assert(ix < nprovides);
- (void) rpmdsSetIx(fc->provides, ix);
- depval = rpmdsDNEVR(fc->provides);
+ (void) rpmdsSetIx(fc->provides, ix-1);
+ if (rpmdsNext(fc->provides) >= 0)
+ depval = rpmdsDNEVR(fc->provides);
+ }
/*@switchbreak@*/ break;
case 'R':
+ if (nrequires > 0) {
assert(ix < nrequires);
- (void) rpmdsSetIx(fc->requires, ix);
- depval = rpmdsDNEVR(fc->requires);
+ (void) rpmdsSetIx(fc->requires, ix-1);
+ if (rpmdsNext(fc->requires) >= 0)
+ depval = rpmdsDNEVR(fc->requires);
+ }
/*@switchbreak@*/ break;
}
if (depval)
@@ -1403,7 +1406,7 @@ assert(ac == c);
/* Add Provides: */
/*@-branchstate@*/
- if (fc->provides != NULL && (c = fc->provides->Count) > 0 && !fc->skipProv) {
+ if (fc->provides != NULL && (c = rpmdsCount(fc->provides)) > 0 && !fc->skipProv) {
p = (const void **) fc->provides->N;
xx = headerAddEntry(pkg->header, RPMTAG_PROVIDENAME, RPM_STRING_ARRAY_TYPE,
p, c);
@@ -1416,7 +1419,7 @@ assert(ac == c);
}
/* Add Requires: */
- if (fc->requires != NULL && (c = fc->requires->Count && !fc->skipReq) > 0) {
+ if (fc->requires != NULL && (c = rpmdsCount(fc->requires)) > 0 && !fc->skipReq) {
p = (const void **) fc->requires->N;
xx = headerAddEntry(pkg->header, RPMTAG_REQUIRENAME, RPM_STRING_ARRAY_TYPE,
p, c);
@@ -1455,13 +1458,11 @@ assert(ac == c);
printDeps(pkg->header);
/*@=noeffect@*/
-#ifdef NOTYET
-if (fc != NULL) {
+if (fc != NULL && _rpmfc_debug) {
char buf[BUFSIZ];
sprintf(buf, "final: files %d cdict[%d] %d%% ddictx[%d]", fc->nfiles, argvCount(fc->cdict), ((100 * fc->fknown)/fc->nfiles), argiCount(fc->ddictx));
rpmfcPrint(buf, fc, NULL);
}
-#endif
/* Clean up. */
fc = rpmfcFree(fc);