summaryrefslogtreecommitdiff
path: root/netfs/fuse
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2014-09-11 19:16:30 +0000
committerrandomdan <randomdan@localhost>2014-09-11 19:16:30 +0000
commit78ca990b9fb6df444c2b5f60ab1b0ec5b634356a (patch)
tree5d97c1cdc78d635d3371db88554f9ddc670f6fde /netfs/fuse
parentSlice configuration for client (diff)
downloadnetfs-78ca990b9fb6df444c2b5f60ab1b0ec5b634356a.tar.bz2
netfs-78ca990b9fb6df444c2b5f60ab1b0ec5b634356a.tar.xz
netfs-78ca990b9fb6df444c2b5f60ab1b0ec5b634356a.zip
Match the new Slicer interface
Diffstat (limited to 'netfs/fuse')
-rw-r--r--netfs/fuse/Jamfile.jam1
-rw-r--r--netfs/fuse/fuse.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/netfs/fuse/Jamfile.jam b/netfs/fuse/Jamfile.jam
index 8814a9d..8223aa7 100644
--- a/netfs/fuse/Jamfile.jam
+++ b/netfs/fuse/Jamfile.jam
@@ -47,6 +47,7 @@ exe netfs :
<library>..//IceUtil
<library>..//pthread
<library>slicer
+ <library>..//libxmlpp
<library>slicer-xml
;
diff --git a/netfs/fuse/fuse.cpp b/netfs/fuse/fuse.cpp
index c0aca45..ac0d0d7 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<Slicer::Xml, NetFS::Client::Configuration>(configPath);
+ fc = Slicer::Deserialize<Slicer::XmlFile, NetFS::Client::Configuration>(configPath);
return NULL;
}