From 57471d4b37736cc523a22a5bb05890e205a599f7 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 29 Sep 2006 14:59:59 +0000 Subject: [PATCH] fixed bug in client_test where dht_state wasnt used --- 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 d29aeee81..a9b0fa592 100755 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -938,7 +938,7 @@ int main(int ac, char* av[]) } #ifndef TORRENT_DISABLE_DHT - entry dht_state = ses.dht_state(); + dht_state = ses.dht_state(); boost::filesystem::ofstream out(".dht_state" , std::ios_base::binary); out.unsetf(std::ios_base::skipws);