Skip to content

Commit 643c142

Browse files
committed
merge branch 'pr-1058'
Giuseppe Scrivano (1): config.go: make umask a pointer LGTMs: @mrunalp @cyphar Closes #1058
2 parents 3e4195d + d3f079a commit 643c142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs-go/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ type User struct {
9090
// GID is the group id.
9191
GID uint32 `json:"gid" platform:"linux,solaris"`
9292
// Umask is the umask for the init process.
93-
Umask uint32 `json:"umask,omitempty" platform:"linux,solaris"`
93+
Umask *uint32 `json:"umask,omitempty" platform:"linux,solaris"`
9494
// AdditionalGids are additional group ids set for the container's process.
9595
AdditionalGids []uint32 `json:"additionalGids,omitempty" platform:"linux,solaris"`
9696
// Username is the user name.

0 commit comments

Comments
 (0)