Rename a few symbols for clarity.

xbps_check_is_installed_pkg -> xbps_check_is_installed_pkg_by_pattern
xbps_check_is_installed_pkgname -> xbps_check_is_installed_pkg_by_name
xbps_check_is_repo_string_remote -> xbps_check_is_remote_uri_remote
This commit is contained in:
Juan RP
2011-01-27 12:34:13 +01:00
parent 628a6cebf7
commit 26701d3bf3
8 changed files with 15 additions and 14 deletions

View File

@@ -119,7 +119,7 @@ open_archive(const char *url)
struct url *u;
struct archive *a;
if (!xbps_check_is_repo_string_remote(url)) {
if (!xbps_check_is_repository_uri_remote(url)) {
if ((a = archive_read_new()) == NULL)
return NULL;