From 9d7a4bf93c0d20a7eb2f07ef2ef63834f2cbf6a9 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 29 Oct 2019 00:04:39 -0700 Subject: filesystem: remove Mount.Options fscrypt doesn't currently do anything with the mount options, so remove them from the Mount structure for now. --- filesystem/mountpoint.go | 1 - 1 file changed, 1 deletion(-) (limited to 'filesystem/mountpoint.go') 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 -- cgit v1.2.3