From: František Dvořák Date: Fri, 21 Feb 2014 15:39:36 +0000 (+0100) Subject: Enable full authorization for enhanced version of VFS plugin. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=7aad4cbe3a2973cd5e03949ae018c4d66f0e4247;p=dmlite-plugins-vfs.git Enable full authorization for enhanced version of VFS plugin. --- diff --git a/src/Vfs.cpp b/src/Vfs.cpp index d3d9244..10493f8 100644 --- a/src/Vfs.cpp +++ b/src/Vfs.cpp @@ -8,7 +8,7 @@ #include #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_); }