diff --git a/lib/plist_fetch.c b/lib/plist_fetch.c index 49baa4ef..16612e30 100644 --- a/lib/plist_fetch.c +++ b/lib/plist_fetch.c @@ -202,17 +202,13 @@ xbps_repo_fetch_remote(struct xbps_repo *repo, const char *url) if (bfile[0] == '.') bfile++; /* skip first dot */ - if (strcmp(bfile, XBPS_REPOIDX_META) == 0) { + if (strcmp(bfile, "index-meta.plist") == 0) { buf = xbps_archive_get_file(a, entry); meta_digest = xbps_buffer_hash_raw(buf, strlen(buf)); idxmeta_tmp = xbps_dictionary_internalize(buf); free(buf); i++; - } else if (strcmp(bfile, XBPS_REPOIDXMETA_SIG) == 0) { - meta_signature = (unsigned char *) xbps_archive_get_file(a, entry); - meta_signature_len = (size_t) archive_entry_size(entry); - i++; - } else if (strcmp(bfile, XBPS_REPOIDX) == 0) { + } else if (strcmp(bfile, "index.plist") == 0) { buf = xbps_archive_get_file(a, entry); repo->idx = xbps_dictionary_internalize(buf); free(buf);