From 6a662180ac11c980c2baaf571f73bda81ce7bff7 Mon Sep 17 00:00:00 2001 From: saad-ali Date: Fri, 28 Feb 2020 19:58:05 -0800 Subject: [PATCH] Fix mount_windows build error --- mount_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount_windows.go b/mount_windows.go index e9fad2b47fa..d9ae1116d68 100644 --- a/mount_windows.go +++ b/mount_windows.go @@ -80,7 +80,7 @@ func (mounter *Mounter) MountSensitive(source string, target string, fstype stri bindSource := source // tell it's going to mount azure disk or azure file according to options - if bind, _, _, _ := MakeBindOpts(options, sensitiveOptions); bind { + if bind, _, _, _ := MakeBindOptsSensitive(options, sensitiveOptions); bind { // mount azure disk bindSource = NormalizeWindowsPath(source) } else {