From 847d1ae0818c5539cc595df975536f70db684260 Mon Sep 17 00:00:00 2001 From: rakshasa Date: Mon, 8 Aug 2011 10:33:27 +0000 Subject: [PATCH] * Fixed strings.choke_heuristics.* typo. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1266 e378c898-3ddf-0310-93e7-cc216c733640 --- src/command_groups.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command_groups.cc b/src/command_groups.cc index 72f7a5d1..d8a80dee 100644 --- a/src/command_groups.cc +++ b/src/command_groups.cc @@ -322,8 +322,8 @@ void initialize_command_groups() { // Move somewhere else? CMD2_ANY ("strings.choke_heuristics", std::bind(&torrent::option_list_strings, torrent::OPTION_CHOKE_HEURISTICS)); - CMD2_ANY ("strings.choke_heuristics.uplaod", std::bind(&torrent::option_list_strings, torrent::OPTION_CHOKE_HEURISTICS_UPLOAD)); - CMD2_ANY ("strings.choke_heuristics.downlaod", std::bind(&torrent::option_list_strings, torrent::OPTION_CHOKE_HEURISTICS_DOWNLOAD)); + CMD2_ANY ("strings.choke_heuristics.upload", std::bind(&torrent::option_list_strings, torrent::OPTION_CHOKE_HEURISTICS_UPLOAD)); + CMD2_ANY ("strings.choke_heuristics.download", std::bind(&torrent::option_list_strings, torrent::OPTION_CHOKE_HEURISTICS_DOWNLOAD)); CMD2_ANY ("strings.tracker_mode", std::bind(&torrent::option_list_strings, torrent::OPTION_TRACKER_MODE)); CMD2_ANY ("choke_group.list", std::bind(&apply_cg_list));