Revert "xbps_match_any_virtualpkg_in_rundeps: break correctly from inner loop on match."

This reverts commit 31b1975b1e.

Revert experimental changes to repository_finddeps.c.
This commit is contained in:
Juan RP
2012-03-11 17:16:58 +01:00
parent 31b1975b1e
commit ca03127a82
2 changed files with 39 additions and 9 deletions

View File

@ -74,9 +74,9 @@ xbps_match_any_virtualpkg_in_rundeps(prop_array_t rundeps,
found = true;
break;
}
if (found)
break;
}
if (found)
break;
}
return found;
}