From fa74398e9e600927158ba84db421f18574e36295 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 9 May 2018 12:22:04 +0200 Subject: [PATCH] Fixed call to Sal's set_tunnel which now is setTunnel --- coreapi/TunnelManager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/TunnelManager.cc b/coreapi/TunnelManager.cc index c9a14f865..43b1be150 100644 --- a/coreapi/TunnelManager.cc +++ b/coreapi/TunnelManager.cc @@ -159,7 +159,7 @@ void TunnelManager::startClient() { mTunnelClient = TunnelClient::create(TRUE); } - mCore->sal->set_tunnel(mTunnelClient); + mCore->sal->setTunnel(mTunnelClient); if (!mUseDualClient) { static_cast(mTunnelClient)->setCallback(tunnelCallback,this); } else {