From 3638e0f3bfdc8bf0b42fa2e6b355b0676aa2d313 Mon Sep 17 00:00:00 2001 From: randomdan Date: Mon, 19 Aug 2013 00:07:50 +0000 Subject: Fix linking in debug Reconnect without locking on session loss --- netfs/Jamfile.jam | 3 +++ netfs/fuse.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/netfs/Jamfile.jam b/netfs/Jamfile.jam index 2078259..7ed27fa 100644 --- a/netfs/Jamfile.jam +++ b/netfs/Jamfile.jam @@ -80,8 +80,11 @@ exe netfs : netfsComms netfsCommon boost_thread + boost_system fuse Ice + IceUtil + pthread libxml2 ; diff --git a/netfs/fuse.cpp b/netfs/fuse.cpp index 1b8493a..057daa0 100644 --- a/netfs/fuse.cpp +++ b/netfs/fuse.cpp @@ -82,7 +82,7 @@ NetFS::onError(const std::exception & e) throw() { if (dynamic_cast(&e)) { // I've become unauthenticated... reauthenticate - connect(); + connect_nl(); return 0; } return FuseAppBase::onError(e); -- cgit v1.2.3