aboutsummaryrefslogtreecommitdiff
path: root/filesystem/mountpoint.go
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2019-10-29 00:04:39 -0700
committerEric Biggers <ebiggers@google.com>2019-10-29 00:04:39 -0700
commit9d7a4bf93c0d20a7eb2f07ef2ef63834f2cbf6a9 (patch)
treea7a38b70b7b7fd61f45f61ccf957cf2f73b0ae89 /filesystem/mountpoint.go
parent249259376da98d8e10e6876c80ff3905e9756bdc (diff)
filesystem: remove Mount.Options
fscrypt doesn't currently do anything with the mount options, so remove them from the Mount structure for now.
Diffstat (limited to 'filesystem/mountpoint.go')
-rw-r--r--filesystem/mountpoint.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/filesystem/mountpoint.go b/filesystem/mountpoint.go
index 856447f..2905481 100644
--- a/filesystem/mountpoint.go
+++ b/filesystem/mountpoint.go
@@ -89,7 +89,6 @@ func getMountInfo() error {
mnt := Mount{
Path: C.GoString(entry.mnt_dir),
FilesystemType: C.GoString(entry.mnt_type),
- Options: strings.Split(C.GoString(entry.mnt_opts), ","),
}
// Skip invalid mountpoints