From c53eabd90c0a1b71da0074eaeb219816c638e864 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 15 May 2008 21:48:11 +0000 Subject: [PATCH] fixed typo --- src/torrent_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torrent_info.cpp b/src/torrent_info.cpp index d76160d66..5a59cffc7 100755 --- a/src/torrent_info.cpp +++ b/src/torrent_info.cpp @@ -580,7 +580,7 @@ namespace libtorrent if (m_comment.empty()) m_comment = torrent_file.dict_find_string_value("comment"); 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"); + if (m_created_by.empty()) m_created_by = torrent_file.dict_find_string_value("created by"); lazy_entry const* info = torrent_file.dict_find_dict("info"); if (info == 0)