From: František Dvořák Date: Thu, 10 Oct 2013 12:44:13 +0000 (+0200) Subject: Fix the recursion in umask() call. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=95a1170af0c7d55fb45bb315f6ffe8ca817f93f7;p=dmlite-plugins-vfs.git Fix the recursion in umask() call. --- diff --git a/src/VfsNs.cpp b/src/VfsNs.cpp index 7c8267e..99584e1 100644 --- a/src/VfsNs.cpp +++ b/src/VfsNs.cpp @@ -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); }