From d2e18d6bd3353995dd1d02b6d0b60f5b8b3c4a6f Mon Sep 17 00:00:00 2001 From: Klaus Ma Date: Fri, 21 Oct 2016 16:33:43 +0800 Subject: [PATCH] Added 'mounterPath' to Mounter interface in 'mount_unsupported.go'. --- pkg/util/mount/mount_unsupported.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/util/mount/mount_unsupported.go b/pkg/util/mount/mount_unsupported.go index c22ba30bdb8..ceed58fb56b 100644 --- a/pkg/util/mount/mount_unsupported.go +++ b/pkg/util/mount/mount_unsupported.go @@ -18,7 +18,9 @@ limitations under the License. package mount -type Mounter struct{} +type Mounter struct { + mounterPath string +} func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error { return nil