Browse code

pkg/containerfs: normalize comment formatting

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2019/11/27 23:39:57
Showing 1 changed files
... ...
@@ -194,7 +194,7 @@ func remapIDs(idMapping *idtools.IdentityMapping, hdr *tar.Header) error {
194 194
 // chmodTarEntry is used to adjust the file permissions used in tar header based
195 195
 // on the platform the archival is done.
196 196
 func chmodTarEntry(perm os.FileMode) os.FileMode {
197
-	//perm &= 0755 // this 0-ed out tar flags (like link, regular file, directory marker etc.)
197
+	// perm &= 0755 // this 0-ed out tar flags (like link, regular file, directory marker etc.)
198 198
 	permPart := perm & os.ModePerm
199 199
 	noPermPart := perm &^ os.ModePerm
200 200
 	// Add the x bit: make everything +x from windows