From 51ec6e32a0a6d2491392bd938e5a01c708fc1108 Mon Sep 17 00:00:00 2001 From: ewt Date: Tue, 30 Jun 1998 18:52:54 +0000 Subject: [PATCH] Provides: parsing in rpmrc wasn't done properly CVS patchset: 2160 CVS date: 1998/06/30 18:52:54 --- lib/depends.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/depends.c b/lib/depends.c index 115c5b7..93a1dd9 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -455,7 +455,7 @@ static int unsatisfiedDepend(rpmDependencies rpmdep, char * reqName, while ((start = strstr(rcProvidesString, reqName))) { if (isspace(start[i]) || !start[i]) return 0; - start += i; + rcProvidesString = start + 1; } } -- 2.7.4