From f182748b9b7d639c4db09f4f72411aba5f811f4e Mon Sep 17 00:00:00 2001 From: John Starks Date: Fri, 27 May 2016 15:53:41 -0700 Subject: [PATCH] Windows: fix Windows graph driver name Reverting "Windows filter storage driver" to "windowsfilter". Signed-off-by: John Starks --- daemon/graphdriver/windows/windows.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/daemon/graphdriver/windows/windows.go b/daemon/graphdriver/windows/windows.go index 99330d62a1..4ba2da8630 100644 --- a/daemon/graphdriver/windows/windows.go +++ b/daemon/graphdriver/windows/windows.go @@ -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.