fixed typo in torrent_info

This commit is contained in:
Arvid Norberg 2008-05-15 17:42:28 +00:00
parent 5703d607af
commit df2389219a
1 changed files with 2 additions and 2 deletions

View File

@ -579,8 +579,8 @@ namespace libtorrent
m_comment = torrent_file.dict_find_string_value("comment.utf-8");
if (m_comment.empty()) m_comment = torrent_file.dict_find_string_value("comment");
m_comment = torrent_file.dict_find_string_value("created by.utf-8");
if (m_comment.empty()) m_comment = torrent_file.dict_find_string_value("created by");
m_created_by = torrent_file.dict_find_string_value("created by.utf-8");
if (m_created_by.empty()) m_comment = torrent_file.dict_find_string_value("created by");
lazy_entry const* info = torrent_file.dict_find_dict("info");
if (info == 0)