diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-16 00:50:49 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-16 00:50:49 +0100 |
commit | 6141f0e4c980dca66d42607a24fc8c1910bf6140 (patch) | |
tree | 3d5c1fe0885721690ebaa12f721c87da837a9e33 /netfs/fuse | |
parent | Prototype listdir (diff) | |
download | netfs-6141f0e4c980dca66d42607a24fc8c1910bf6140.tar.bz2 netfs-6141f0e4c980dca66d42607a24fc8c1910bf6140.tar.xz netfs-6141f0e4c980dca66d42607a24fc8c1910bf6140.zip |
Use facets for all dynamic servants and set the facetId to the version serial
Diffstat (limited to 'netfs/fuse')
-rw-r--r-- | netfs/fuse/fuseDirs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netfs/fuse/fuseDirs.cpp b/netfs/fuse/fuseDirs.cpp index 03cc712..becaa44 100644 --- a/netfs/fuse/fuseDirs.cpp +++ b/netfs/fuse/fuseDirs.cpp @@ -4,7 +4,7 @@ NetFS::FuseApp::OpenDir::OpenDir(DirectoryPrx r, const std::string & p) : remote(r), - remoteV2(r->ice_getFacet() == "v2" ? DirectoryV2Prx::uncheckedCast(r) : nullptr), + remoteV2(r->ice_getFacet() >= "v02" ? DirectoryV2Prx::uncheckedCast(r) : nullptr), path(p) { } |