From 350c6d243fcd1cd7b025d000940d1ce2784f022d Mon Sep 17 00:00:00 2001 From: randomdan Date: Sat, 27 Sep 2014 12:42:04 +0000 Subject: Slicer compat fix --- netfs/daemon/daemon.cpp | 2 +- netfs/fuse/fuse.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netfs/daemon/daemon.cpp b/netfs/daemon/daemon.cpp index 14dd26b..4611d30 100644 --- a/netfs/daemon/daemon.cpp +++ b/netfs/daemon/daemon.cpp @@ -34,7 +34,7 @@ void NetFSDaemon::LoadConfiguration(const boost::filesystem::path & path) { dc = new NetFS::Daemon::RuntimeConfiguration(); - dc->CurrentConfiguration = Slicer::Deserialize(path); + dc->CurrentConfiguration = Slicer::Deserialize(path); auto selfItr = dc->CurrentConfiguration->Hosts.find(hostname()); if (selfItr == dc->CurrentConfiguration->Hosts.end()) { throw std::runtime_error("This host is not defined in the configuration."); diff --git a/netfs/fuse/fuse.cpp b/netfs/fuse/fuse.cpp index ac0d0d7..ceb1515 100644 --- a/netfs/fuse/fuse.cpp +++ b/netfs/fuse/fuse.cpp @@ -37,7 +37,7 @@ void * NetFS::FuseApp::init(struct fuse_conn_info *) { ic = Ice::initialize(_argc, _argv); - fc = Slicer::Deserialize(configPath); + fc = Slicer::Deserialize(configPath); return NULL; } -- cgit v1.2.3