Enable full authorization for enhanced version of VFS plugin.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Fri, 21 Feb 2014 15:39:36 +0000 (16:39 +0100)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Sun, 23 Feb 2014 13:16:18 +0000 (14:16 +0100)
src/Vfs.cpp

index d3d9244..10493f8 100644 (file)
@@ -8,7 +8,7 @@
 #include <sys/utsname.h>
 
 #include "Vfs.h"
-#include "VfsAuthnSimple.h"
+#include "VfsAuthn.h"
 #include "VfsDriver.h"
 #include "VfsIO.h"
 #include "VfsNs.h"
@@ -134,7 +134,7 @@ IODriver* VfsFactory::createIODriver(PluginManager*) throw (DmException)
 Authn* VfsFactory::createAuthn(PluginManager*) throw (DmException)
 {
   debug("");
-  return new VfsAuthnSimple();
+  return new VfsAuthn(this->nsPrefix_);
 }