pkg/mount: adding fields supported by freebsd
Signed-off-by: Vincent Batts <vbatts@redhat.com>
This commit is contained in:
parent
3816c2f723
commit
3a2c49a3d9
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,8 @@ func parseMountTable() ([]*MountInfo, error) {
|
|||
for _, entry := range entries {
|
||||
var mountinfo MountInfo
|
||||
mountinfo.Mountpoint = C.GoString(&entry.f_mntonname[0])
|
||||
mountinfo.Source = C.GoString(&entry.f_mntfromname[0])
|
||||
mountinfo.Fstype = C.GoString(&entry.f_fstypename[0])
|
||||
out = append(out, &mountinfo)
|
||||
}
|
||||
return out, nil
|
||||
|
|
Loading…
Reference in a new issue