From 7aad4cbe3a2973cd5e03949ae018c4d66f0e4247 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Fri, 21 Feb 2014 16:39:36 +0100 Subject: [PATCH] Enable full authorization for enhanced version of VFS plugin. --- src/Vfs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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_); } -- 1.8.2.3