PoolDriver needs the namespace prefix.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 15 Oct 2013 11:35:28 +0000 (13:35 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 15 Oct 2013 11:35:28 +0000 (13:35 +0200)
src/Vfs.cpp

index 2478b5b..f4d76a5 100644 (file)
@@ -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_);
 }