From: František Dvořák Date: Fri, 11 Oct 2013 13:26:09 +0000 (+0200) Subject: PoolDriver needs the namespace prefix. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=c47b745967b506e473de4cf3cb4c7319ae60fb1e;p=dmlite-plugins-vfs-old.git PoolDriver needs the namespace prefix. --- diff --git a/src/Vfs.cpp b/src/Vfs.cpp index 2478b5b..f4d76a5 100644 --- a/src/Vfs.cpp +++ b/src/Vfs.cpp @@ -111,7 +111,7 @@ std::string VfsFactory::implementedPool() throw () PoolDriver* VfsFactory::createPoolDriver() throw (DmException) { syslog(LOG_DEBUG, "%s", __func__); - return new VfsPoolDriver(this->hostName_, this->diskPrefix_, + return new VfsPoolDriver(this->hostName_, this->nsPrefix_, this->tokenPasswd_, this->tokenUseIp_, this->tokenLife_); }