Revert the repodata signature stuff.

This commit is contained in:
Juan RP
2020-01-06 14:56:01 +01:00
parent 4ddb335c8e
commit 850ba2d416
2 changed files with 2 additions and 12 deletions

View File

@ -77,15 +77,7 @@ repo_get_dict(struct xbps_repo *repo)
archive_error_string(repo->ar));
return NULL;
}
dict = xbps_archive_get_dictionary(repo->ar, entry, &bytes);
idxmeta = (repo->idxmeta != NULL) ? repo->idxmeta : dict;
if (verified != NULL && bytes != NULL) {
digest = xbps_buffer_hash_raw(bytes, strlen(bytes));
*verified = repo_verify_index(repo, idxmeta, digest);
}
free(digest);
free(bytes);
return dict;
return xbps_archive_get_dictionary(repo->ar, entry);
}
bool