Rename lib/sync_remote_pkgidx.c to repository_sync_index.c.

xbps_sync_repository_pkg_index() renamed to xbps_repository_sync_pkg_index().

--HG--
rename : lib/sync_remote_pkgidx.c => lib/repository_sync_index.c
extra : convert_revision : xtraeme%40gmail.com-20091130105325-75rr2xm1zpi8bjwh
This commit is contained in:
Juan RP
2009-11-30 11:53:25 +01:00
parent a3db88bd07
commit e4cda0e9cc
4 changed files with 9 additions and 9 deletions

View File

@@ -157,7 +157,7 @@ register_repository(const char *uri)
return errno;
printf("Fetching remote package index at %s...\n", uri);
rv = xbps_sync_repository_pkg_index(idxstr);
rv = xbps_repository_sync_pkg_index(idxstr);
if (rv == -1) {
printf("Error: could not fetch pkg index file: %s.\n",
xbps_fetch_error_string());
@@ -277,7 +277,7 @@ repository_sync(void)
continue;
printf("Syncing package index from: %s\n", rd->rd_uri);
rv = xbps_sync_repository_pkg_index(rd->rd_uri);
rv = xbps_repository_sync_pkg_index(rd->rd_uri);
if (rv == -1) {
printf("Failed! returned: %s\n",
xbps_fetch_error_string());