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

index 7c8267e..99584e1 100644 (file)
@@ -203,7 +203,7 @@ void VfsCatalog::create(const std::string& path, mode_t mode) throw (DmException
 
 mode_t VfsCatalog::umask(mode_t mask) throw ()
 {
-  return umask(mask);
+  return ::umask(mask);
 }