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
8988ee1f
Commit
8988ee1f
authored
May 09, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UnionFs: use Printf rather than Println.
parent
2fc99324
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
unionfs/autounion.go
unionfs/autounion.go
+2
-2
No files found.
unionfs/autounion.go
View file @
8988ee1f
...
@@ -68,7 +68,7 @@ func (me *AutoUnionFs) Mount(connector *fuse.FileSystemConnector) fuse.Status {
...
@@ -68,7 +68,7 @@ func (me *AutoUnionFs) Mount(connector *fuse.FileSystemConnector) fuse.Status {
func
(
me
*
AutoUnionFs
)
addAutomaticFs
(
roots
[]
string
)
{
func
(
me
*
AutoUnionFs
)
addAutomaticFs
(
roots
[]
string
)
{
relative
:=
strings
.
TrimLeft
(
strings
.
Replace
(
roots
[
0
],
me
.
root
,
""
,
-
1
),
"/"
)
relative
:=
strings
.
TrimLeft
(
strings
.
Replace
(
roots
[
0
],
me
.
root
,
""
,
-
1
),
"/"
)
name
:=
strings
.
Replace
(
relative
,
"/"
,
"-"
,
-
1
)
name
:=
strings
.
Replace
(
relative
,
"/"
,
"-"
,
-
1
)
if
me
.
getUnionFs
(
name
)
==
nil
{
if
me
.
getUnionFs
(
name
)
==
nil
{
me
.
addFs
(
name
,
roots
)
me
.
addFs
(
name
,
roots
)
}
}
...
@@ -113,7 +113,7 @@ func (me *AutoUnionFs) rmFs(name string) (code fuse.Status) {
...
@@ -113,7 +113,7 @@ func (me *AutoUnionFs) rmFs(name string) (code fuse.Status) {
if
code
.
Ok
()
{
if
code
.
Ok
()
{
me
.
knownFileSystems
[
name
]
=
nil
,
false
me
.
knownFileSystems
[
name
]
=
nil
,
false
}
else
{
}
else
{
log
.
Print
ln
(
"Unmount failed for %s. Code %v"
,
name
,
code
)
log
.
Print
f
(
"Unmount failed for %s. Code %v"
,
name
,
code
)
}
}
return
code
return
code
...
...
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