From d5701bbd0e79bf5e3dfceb0141dfdd826e3d30f1 Mon Sep 17 00:00:00 2001 From: orignal Date: Fri, 3 Oct 2014 15:11:42 -0400 Subject: [PATCH] use own pool for request of destination of new I2P client tunnel --- I2PTunnel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I2PTunnel.cpp b/I2PTunnel.cpp index f583b7de..07bc6fa1 100644 --- a/I2PTunnel.cpp +++ b/I2PTunnel.cpp @@ -196,7 +196,7 @@ namespace stream if (i2p::data::netdb.GetAddressBook ().GetIdentHash (m_Destination, identHash)) { m_DestinationIdentHash = new i2p::data::IdentHash (identHash); - i2p::data::netdb.Subscribe (*m_DestinationIdentHash, GetSharedLocalDestination ()->GetTunnelPool ()); + i2p::data::netdb.Subscribe (*m_DestinationIdentHash, GetLocalDestination ()->GetTunnelPool ()); } } }