Merge pull request #23074 from jstarks/fix_windows_graph_name

Windows: fix Windows graph driver name
This commit is contained in:
Brian Goff 2016-05-27 22:23:51 -04:00
commit e0ee0ac789

View file

@ -80,9 +80,10 @@ func InitFilter(home string, options []string, uidMaps, gidMaps []idtools.IDMap)
return d, nil
}
// String returns the string representation of a driver.
// String returns the string representation of a driver. This should match
// the name the graph driver has been registered with.
func (d *Driver) String() string {
return "Windows filter storage driver"
return "windowsfilter"
}
// Status returns the status of the driver.