Browse code

Windows: fix Windows graph driver name

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

Signed-off-by: John Starks <jostarks@microsoft.com>

John Starks authored on 2016/05/28 07:53:41
Showing 1 changed files
... ...
@@ -80,9 +80,10 @@ func InitFilter(home string, options []string, uidMaps, gidMaps []idtools.IDMap)
80 80
 	return d, nil
81 81
 }
82 82
 
83
-// String returns the string representation of a driver.
83
+// String returns the string representation of a driver. This should match
84
+// the name the graph driver has been registered with.
84 85
 func (d *Driver) String() string {
85
-	return "Windows filter storage driver"
86
+	return "windowsfilter"
86 87
 }
87 88
 
88 89
 // Status returns the status of the driver.