diff options
author | randomdan <randomdan@localhost> | 2014-09-11 19:16:30 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2014-09-11 19:16:30 +0000 |
commit | 78ca990b9fb6df444c2b5f60ab1b0ec5b634356a (patch) | |
tree | 5d97c1cdc78d635d3371db88554f9ddc670f6fde /netfs/fuse | |
parent | Slice configuration for client (diff) | |
download | netfs-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.jam | 1 | ||||
-rw-r--r-- | netfs/fuse/fuse.cpp | 2 |
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; } |