Browse code

Windows: Fixes comment

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2015/11/14 05:51:05
Showing 1 changed files
... ...
@@ -4,7 +4,8 @@ package daemon
4 4
 // cannot be in a read-only volume. If it  is not in a volume, the container
5 5
 // cannot be configured with a read-only rootfs.
6 6
 //
7
-// This is a no-op on Windows which does not support volumes.
7
+// This is a no-op on Windows which does not support read-only volumes, or
8
+// extracting to a mount point inside a volume. TODO Windows: FIXME Post-TP4
8 9
 func checkIfPathIsInAVolume(container *Container, absPath string) (bool, error) {
9 10
 	return false, nil
10 11
 }