From: František Dvořák Date: Thu, 10 Oct 2013 12:44:14 +0000 (+0200) Subject: Fix recurion in utime(). X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=6d30d9243ffcad6e21e1ac5d7c8d6eb415a2e584;p=dmlite-plugins-vfs.git Fix recurion in utime(). --- diff --git a/src/VfsNs.cpp b/src/VfsNs.cpp index a620b06..d483dcb 100644 --- a/src/VfsNs.cpp +++ b/src/VfsNs.cpp @@ -265,7 +265,7 @@ void VfsCatalog::setAcl(const std::string& path, const Acl& acl) throw (DmExcept void VfsCatalog::utime(const std::string& path, const struct utimbuf* buf) throw (DmException) { - utime(path.c_str(), buf); + ::utime(path.c_str(), buf); }