rc: Fix mount/listmounts not returning the full Fs entered in mount/mount
This commit is contained in:
parent
0d2a62a927
commit
38f1f5b177
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ func listMountsRc(_ context.Context, in rc.Params) (out rc.Params, err error) {
|
||||||
for _, k := range keys {
|
for _, k := range keys {
|
||||||
m := liveMounts[k]
|
m := liveMounts[k]
|
||||||
info := MountInfo{
|
info := MountInfo{
|
||||||
Fs: m.Fs.Name(),
|
Fs: fs.ConfigString(m.Fs),
|
||||||
MountPoint: m.MountPoint,
|
MountPoint: m.MountPoint,
|
||||||
MountedOn: m.MountedOn,
|
MountedOn: m.MountedOn,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue