From 4137c0885aa914070d51e60c8e1eca06af865fd6 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 22 Aug 2007 18:37:20 +0000 Subject: [PATCH] fixed pausing issue introduced in the changed add_torrent --- examples/client_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 1eb9fc621..a30455d10 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -437,7 +437,7 @@ void add_torrent(libtorrent::session& ses catch (boost::filesystem::filesystem_error&) {} torrent_handle h = ses.add_torrent(t, save_path, resume_data - , compact_mode, 16 * 1024); + , compact_mode, false); handles.insert(std::make_pair( monitored_dir?std::string(torrent):std::string(), h));