xbps_rpool_sync: ignore fetch errors, they will be reported by state_cb.

This commit is contained in:
Juan RP
2012-06-01 16:04:47 +02:00
parent 642e6fca3a
commit c7e4630056

View File

@ -149,7 +149,6 @@ xbps_rpool_sync(const char *uri)
const struct xbps_handle *xhp = xbps_handle_get(); const struct xbps_handle *xhp = xbps_handle_get();
const char *repouri; const char *repouri;
size_t i; size_t i;
int rv = 0;
if (xhp->cfg == NULL) if (xhp->cfg == NULL)
return ENOTSUP; return ENOTSUP;
@ -163,7 +162,6 @@ xbps_rpool_sync(const char *uri)
* Fetch repository index. * Fetch repository index.
*/ */
if (xbps_repository_sync_pkg_index(repouri, XBPS_PKGINDEX) == -1) { if (xbps_repository_sync_pkg_index(repouri, XBPS_PKGINDEX) == -1) {
rv = fetchLastErrCode != 0 ? fetchLastErrCode : errno;
xbps_dbg_printf("[rpool] `%s' failed to fetch: %s\n", xbps_dbg_printf("[rpool] `%s' failed to fetch: %s\n",
repouri, fetchLastErrCode == 0 ? strerror(errno) : repouri, fetchLastErrCode == 0 ? strerror(errno) :
xbps_fetch_error_string()); xbps_fetch_error_string());
@ -174,14 +172,13 @@ xbps_rpool_sync(const char *uri)
*/ */
if (xbps_repository_sync_pkg_index(repouri, if (xbps_repository_sync_pkg_index(repouri,
XBPS_PKGINDEX_FILES) == -1) { XBPS_PKGINDEX_FILES) == -1) {
rv = fetchLastErrCode != 0 ? fetchLastErrCode : errno;
xbps_dbg_printf("[rpool] `%s' failed to fetch: %s\n", xbps_dbg_printf("[rpool] `%s' failed to fetch: %s\n",
repouri, fetchLastErrCode == 0 ? strerror(errno) : repouri, fetchLastErrCode == 0 ? strerror(errno) :
xbps_fetch_error_string()); xbps_fetch_error_string());
continue; continue;
} }
} }
return rv; return 0;
} }
int int