From 6d30d9243ffcad6e21e1ac5d7c8d6eb415a2e584 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Thu, 10 Oct 2013 14:44:14 +0200 Subject: [PATCH] Fix recurion in utime(). --- src/VfsNs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 1.8.2.3