API/ABI break for June 2011.

Rename some functions to reflect its description a bit better.

--HG--
rename : lib/repository_plist.c => lib/plist_fetch.c
This commit is contained in:
Juan RP
2011-06-01 09:37:32 +02:00
parent c9a673cc11
commit 841c9e2d51
34 changed files with 219 additions and 217 deletions

View File

@ -49,7 +49,7 @@
*/
int
xbps_configure_all_pkgs(void)
xbps_configure_packages(void)
{
prop_dictionary_t d;
prop_object_t obj;
@ -60,7 +60,7 @@ xbps_configure_all_pkgs(void)
if ((d = xbps_regpkgdb_dictionary_get()) == NULL)
return errno;
iter = xbps_get_array_iter_from_dict(d, "packages");
iter = xbps_array_iter_from_dict(d, "packages");
if (iter == NULL) {
rv = errno;
goto out;
@ -98,7 +98,7 @@ xbps_configure_pkg(const char *pkgname,
xhp = xbps_handle_get();
if (check_state) {
rv = xbps_get_pkg_state_installed(pkgname, &state);
rv = xbps_pkg_state_installed(pkgname, &state);
if (rv != 0)
return EINVAL;