Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
aca66445
Commit
aca66445
authored
Dec 30, 2015
by
Hugo Beauzée-Luyssen
Browse files
fs: Device: Fix mountpoint log
parent
4fdf8862
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/filesystem/unix/Device.cpp
View file @
aca66445
...
...
@@ -171,7 +171,7 @@ Device::MountpointMap Device::listMountpoints()
if
(
std
::
find
(
begin
(
allowedFsType
),
end
(
allowedFsType
),
s
.
mnt_type
)
==
end
(
allowedFsType
)
)
continue
;
auto
deviceName
=
s
.
mnt_fsname
;
LOG_INFO
(
"Discovered
device
"
,
deviceName
,
" mounted on "
,
s
.
mnt_dir
);
LOG_INFO
(
"Discovered
mountpoint
"
,
deviceName
,
" mounted on "
,
s
.
mnt_dir
,
" ("
,
s
.
mnt_type
,
')'
);
res
[
deviceName
]
=
s
.
mnt_dir
;
errno
=
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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