git://scientific.zcu.cz
/
dmlite-plugins-vfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f821f7f
)
Fix the recursion in umask() call.
author
František Dvořák
<valtri@civ.zcu.cz>
Thu, 10 Oct 2013 12:44:13 +0000
(14:44 +0200)
committer
František Dvořák
<valtri@civ.zcu.cz>
Thu, 10 Oct 2013 12:44:13 +0000
(14:44 +0200)
src/VfsNs.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/VfsNs.cpp
b/src/VfsNs.cpp
index
7c8267e
..
99584e1
100644
(file)
--- 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);
}