aboutsummaryrefslogtreecommitdiff
path: root/filesystem/filesystem.go
diff options
context:
space:
mode:
Diffstat (limited to 'filesystem/filesystem.go')
-rw-r--r--filesystem/filesystem.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go
index 3884e6e..2b3383c 100644
--- a/filesystem/filesystem.go
+++ b/filesystem/filesystem.go
@@ -66,7 +66,6 @@ var (
// Mount contains information for a specific mounted filesystem.
// Path - Absolute path where the directory is mounted
// FilesystemType - Type of the mounted filesystem, e.g. "ext4"
-// Options - List of options used when mounting the filesystem
// Device - Device for filesystem (empty string if we cannot find one)
//
// In order to use a Mount to store fscrypt metadata, some directories must be
@@ -92,7 +91,6 @@ var (
type Mount struct {
Path string
FilesystemType string
- Options []string
Device string
}
@@ -124,8 +122,7 @@ const (
func (m *Mount) String() string {
return fmt.Sprintf(`%s
FilesystemType: %s
- Options: %v
- Device: %s`, m.Path, m.FilesystemType, m.Options, m.Device)
+ Device: %s`, m.Path, m.FilesystemType, m.Device)
}
// BaseDir returns the path to the base fscrypt directory for this filesystem.