rename xbps_pkgver_is_reverted to xbps_pkg_reverts

This commit is contained in:
Enno Boland
2014-09-23 09:51:11 +02:00
parent cd9a9e78a8
commit 50fb6c1605
4 changed files with 6 additions and 6 deletions

View File

@@ -122,14 +122,14 @@ index_add(struct xbps_handle *xhp, int argc, char **argv, bool force)
* If the current package reverts the package in the index, consider
* the current package as the newer one.
*/
if(ret < 0 && xbps_pkgver_is_reverted(pkgver, curpkgd)) {
if(ret < 0 && xbps_pkg_reverts(curpkgd, pkgver)) {
ret = 1;
}
/*
* If package in the index reverts current package, consider the
* package in the index as the newer one.
*/
else if (ret < 0 && xbps_pkgver_is_reverted(opkgver, binpkgd)) {
else if (ret < 0 && xbps_pkg_reverts(binpkgd, opkgver)) {
ret = -1;
}