From: František Dvořák Date: Thu, 12 Sep 2013 21:19:17 +0000 (+0200) Subject: Fix the recursion in umask() call. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=08bce10196cdd56e129a840752aa5752da93cd23;p=dmlite-plugins-vfs-old.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); }