From: František Dvořák Date: Tue, 15 Oct 2013 11:35:28 +0000 (+0200) Subject: PoolDriver needs the namespace prefix. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=dc6e06c78f44e0e553cd17fc757b94e62dac65ea;p=dmlite-plugins-vfs.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_); }