From 2132326b0b9c95a3c59bc1210b4871da05d5ab13 Mon Sep 17 00:00:00 2001 From: Icaro Seara Date: Wed, 19 Aug 2015 21:44:02 -0300 Subject: [PATCH] Fix typo, "fil" -> "fill" Signed-off-by: Icaro Seara Upstream-commit: 997ba4b0da8c0596fd9fb108a7fcd4c79c1382ff Component: engine --- components/engine/pkg/archive/archive_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/pkg/archive/archive_unix.go b/components/engine/pkg/archive/archive_unix.go index 823c556be0..02ce3cda4d 100644 --- a/components/engine/pkg/archive/archive_unix.go +++ b/components/engine/pkg/archive/archive_unix.go @@ -51,7 +51,7 @@ func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, st nlink = uint32(s.Nlink) inode = uint64(s.Ino) - // Currently go does not fil in the major/minors + // Currently go does not fill in the major/minors if s.Mode&syscall.S_IFBLK != 0 || s.Mode&syscall.S_IFCHR != 0 { hdr.Devmajor = int64(major(uint64(s.Rdev)))