Windows: fix Windows graph driver name

Reverting "Windows filter storage driver" to "windowsfilter".

Signed-off-by: John Starks <jostarks@microsoft.com>
Upstream-commit: f182748b9b7d639c4db09f4f72411aba5f811f4e
Component: engine
This commit is contained in:
John Starks
2016-05-27 15:53:41 -07:00
parent 2aa8db7718
commit 98b281fb61

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.