libxbps: rename xbps_repository_pool_xxx to xbps_rpool_xxx.

This commit is contained in:
Juan RP
2012-05-30 10:56:32 +02:00
parent da4b8b7427
commit 922ee1f1b6
11 changed files with 47 additions and 54 deletions

View File

@ -49,9 +49,9 @@ show_pkg_info_from_repolist(const char *pattern, const char *option)
prop_dictionary_t pkgd;
if (xbps_pkgpattern_version(pattern))
pkgd = xbps_repository_pool_find_pkg(pattern, true, false);
pkgd = xbps_rpool_find_pkg(pattern, true, false);
else
pkgd = xbps_repository_pool_find_pkg(pattern, false, true);
pkgd = xbps_rpool_find_pkg(pattern, false, true);
if (pkgd == NULL)
return errno;
@ -73,9 +73,9 @@ show_pkg_deps_from_repolist(const char *pattern)
const char *ver, *repoloc;
if (xbps_pkgpattern_version(pattern))
pkgd = xbps_repository_pool_find_pkg(pattern, true, false);
pkgd = xbps_rpool_find_pkg(pattern, true, false);
else
pkgd = xbps_repository_pool_find_pkg(pattern, false, true);
pkgd = xbps_rpool_find_pkg(pattern, false, true);
if (pkgd == NULL)
return errno;