From c5a5004f9e3971834b131fe455f914962dcfbd20 Mon Sep 17 00:00:00 2001 From: Jonathan Gold Date: Thu, 19 Oct 2017 06:58:31 -0400 Subject: [PATCH] resources: Fix user gid compare --- resources/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/user.go b/resources/user.go index d45ccb19..e1d80a82 100644 --- a/resources/user.go +++ b/resources/user.go @@ -271,7 +271,7 @@ func (obj *UserRes) Compare(r Res) bool { return false } if obj.GID != nil && res.GID != nil { - if *obj.GID != *res.UID { + if *obj.GID != *res.GID { return false } }