From: Alejandro Álvarez Ayllón Date: Tue, 18 Dec 2012 10:07:57 +0000 (+0000) Subject: LCGDM-902: VFS adapted to new API X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=3af2deaa10ea990d245f24b1bcf68bb5d97c1007;p=dmlite-plugins-vfs.git LCGDM-902: VFS adapted to new API git-svn-id: https://svn.cern.ch/reps/lcgdm/dmlite-plugins-vfs/trunk@8050 4525493e-7705-40b1-a816-d608a930855b --- diff --git a/src/VfsDriver.cpp b/src/VfsDriver.cpp index e756901..8cae412 100644 --- a/src/VfsDriver.cpp +++ b/src/VfsDriver.cpp @@ -198,8 +198,7 @@ Location VfsPoolHandler::whereToWrite(const std::string& sfn) throw (DmException -void VfsPoolHandler::doneWriting(const Replica& replica, - const Extensible& extras) throw (DmException) +void VfsPoolHandler::doneWriting(const Location& loc) throw (DmException) { throw DmException(EACCES, "Write mode not supported"); } diff --git a/src/VfsDriver.h b/src/VfsDriver.h index e243cd9..d521d0c 100644 --- a/src/VfsDriver.h +++ b/src/VfsDriver.h @@ -56,8 +56,7 @@ namespace dmlite { void removeReplica(const Replica&) throw (DmException); Location whereToWrite(const std::string&) throw (DmException); - void doneWriting (const Replica&, - const Extensible&) throw (DmException); + void doneWriting (const Location&) throw (DmException); private: VfsPoolDriver* driver_;