diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-16 01:22:05 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-16 01:22:05 +0100 |
commit | 6f14be9f75537afa398fd82b47ea70d8dd6f4475 (patch) | |
tree | e0fe32de58bf30937ff86f67e6f65a5832edef19 /netfs/fuse | |
parent | Use facets for all dynamic servants and set the facetId to the version serial (diff) | |
download | netfs-6f14be9f75537afa398fd82b47ea70d8dd6f4475.tar.bz2 netfs-6f14be9f75537afa398fd82b47ea70d8dd6f4475.tar.xz netfs-6f14be9f75537afa398fd82b47ea70d8dd6f4475.zip |
Split VFS type converters into simpler base classnetfs-1.2.0
Diffstat (limited to 'netfs/fuse')
-rw-r--r-- | netfs/fuse/fuseApp.h | 2 | ||||
-rw-r--r-- | netfs/fuse/fuseSystem.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/netfs/fuse/fuseApp.h b/netfs/fuse/fuseApp.h index 2c9824b..7e5f279 100644 --- a/netfs/fuse/fuseApp.h +++ b/netfs/fuse/fuseApp.h @@ -125,7 +125,7 @@ namespace NetFS { EntCache<User> userLookup; EntCache<Group> groupLookup; - TypeConverter converter; + EntryTypeConverter converter; typedef AdHoc::Cache<struct stat, std::string> StatCache; StatCache statCache; diff --git a/netfs/fuse/fuseSystem.cpp b/netfs/fuse/fuseSystem.cpp index 85432e8..ac87d14 100644 --- a/netfs/fuse/fuseSystem.cpp +++ b/netfs/fuse/fuseSystem.cpp @@ -4,7 +4,7 @@ int NetFS::FuseApp::statfs(const char * p, struct statvfs * vfs) { try { - *vfs = converter.convert(volume->statfs(reqEnv(), p)); + *vfs = converter.TypeConverter::convert(volume->statfs(reqEnv(), p)); return 0; } catch (NetFS::SystemError & e) { |