Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
c6382a33
Commit
c6382a33
authored
May 14, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 0222 implicitly in Chmod as well.
parent
397fa2e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
unionfs/unionfs.go
unionfs/unionfs.go
+5
-5
unionfs/unionfs_test.go
unionfs/unionfs_test.go
+1
-1
No files found.
unionfs/unionfs.go
View file @
c6382a33
...
...
@@ -391,11 +391,11 @@ func (me *UnionFs) Chmod(name string, mode uint32) (code fuse.Status) {
if
r
.
code
!=
fuse
.
OK
{
return
r
.
code
}
if
r
.
attr
.
Mode
&
fuse
.
S_IFREG
==
0
{
return
fuse
.
EPERM
}
permMask
:=
uint32
(
07777
)
// Always be writable.
mode
|=
0222
oldMode
:=
r
.
attr
.
Mode
&
permMask
if
oldMode
!=
mode
{
...
...
@@ -408,7 +408,7 @@ func (me *UnionFs) Chmod(name string, mode uint32) (code fuse.Status) {
}
me
.
fileSystems
[
0
]
.
Chmod
(
name
,
mode
)
}
r
.
attr
.
Mode
=
(
r
.
attr
.
Mode
&^
07777
)
|
mode
r
.
attr
.
Mode
=
(
r
.
attr
.
Mode
&^
permMask
)
|
mode
r
.
attr
.
Ctime_ns
=
time
.
Nanoseconds
()
me
.
branchCache
.
Set
(
name
,
r
)
return
fuse
.
OK
...
...
unionfs/unionfs_test.go
View file @
c6382a33
...
...
@@ -170,7 +170,7 @@ func TestChmod(t *testing.T) {
fi
,
err
:=
os
.
Lstat
(
m_fn
)
CheckSuccess
(
err
)
if
fi
.
Mode
&
07777
!=
07
070
{
if
fi
.
Mode
&
07777
!=
07
272
{
t
.
Errorf
(
"Unexpected mode found: %o"
,
fi
.
Mode
)
}
_
,
err
=
os
.
Lstat
(
wd
+
"/rw/file"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment