Fix recurion in utime().
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Thu, 10 Oct 2013 12:44:14 +0000 (14:44 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Thu, 10 Oct 2013 12:44:14 +0000 (14:44 +0200)
src/VfsNs.cpp

index a620b06..d483dcb 100644 (file)
@@ -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);
 }