summaryrefslogtreecommitdiff
path: root/netfs/daemonSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/daemonSystem.cpp')
-rw-r--r--netfs/daemonSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/netfs/daemonSystem.cpp b/netfs/daemonSystem.cpp
index fa9cb1d..cb3b6d1 100644
--- a/netfs/daemonSystem.cpp
+++ b/netfs/daemonSystem.cpp
@@ -9,9 +9,9 @@ SystemServer::SystemServer(DaemonGlobalStatePtr dgs) :
}
NetFSComms::VFS
-SystemServer::statfs(Ice::Long tok, const std::string & path, const Ice::Current&)
+SystemServer::statfs(const NetFSComms::ReqEnv & re, const std::string & path, const Ice::Current&)
{
- SessionPtr sess(dgs->getSession(tok));
+ SessionPtr sess(dgs->getSession(re.tok));
errno = 0;
struct statvfs s;
if (::statvfs((sess->exportCfg->root / path).string().c_str(), &s) != 0) {