From e086a3e33c84c8b8f51ab86909216fc7aa28f8ae Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 15 Sep 2016 08:27:10 -0700 Subject: [PATCH] specs-go/config: Drop "this field is platform dependent" (again) We dropped these in 47740802 (specs-go/config: Drop "this field is platform dependent", 2016-09-14, #568) but f9e48e00 (Windows: User struct changes, 2016-09-14, #565) was developed in parallel and brought in a new one. Signed-off-by: W. Trevor King --- specs-go/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/config.go b/specs-go/config.go index 74c53f091..685a32863 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -61,7 +61,7 @@ type User struct { GID uint32 `json:"gid" platform:"linux,solaris"` // AdditionalGids are additional group ids set for the container's process. AdditionalGids []uint32 `json:"additionalGids,omitempty" platform:"linux,solaris"` - // Username is the user name. (this field is platform dependent) + // Username is the user name. Username string `json:"username,omitempty" platform:"windows"` }