This commit is contained in:
Arvid Norberg 2010-11-16 06:43:29 +00:00
parent 71d51b90e8
commit 12d19f15e0
1 changed files with 2 additions and 2 deletions

View File

@ -256,8 +256,8 @@ int run_suite(char const* protocol, bool test_url_seed, bool chunked_encoding)
// verify that the file hashes are correct
for (int i = 0; i < torrent_file->num_files(); ++i)
{
TEST_CHECK(torrent_file->file_at(i).filehash);
sha1_hash h1 = *torrent_file->file_at(i).filehash;
TEST_CHECK(torrent_file->file_at(i).filehash_index >= 0);
sha1_hash h1 = torrent_file->files().hash(torrent_file->file_at(i).filehash_index);
sha1_hash h2 = file_hash(combine_path("./tmp1_web_seed", torrent_file->file_at(i).path));
fprintf(stderr, "%s: %s == %s\n", torrent_file->file_at(i).path.c_str()
, to_hex(h1.to_string()).c_str(), to_hex(h2.to_string()).c_str());