diff --git a/posix.go b/posix.go index 6cdea4cda..4d6f26213 100644 --- a/posix.go +++ b/posix.go @@ -210,12 +210,8 @@ func (s fsStorage) ListVols() (volsInfo []VolInfo, err error) { return nil, err } for i, vol := range volsInfo { - // Volname on case sensitive fs backends can come in as - // capitalized, but object layer cannot consume it - // directly. Convert it as we see fit. - volName := strings.ToLower(vol.Name) volInfo := VolInfo{ - Name: volName, + Name: vol.Name, Created: vol.Created, Total: diskInfo.Total, Free: diskInfo.Free,