From: Tim Chen Date: Tue, 9 Aug 2011 06:48:32 +0000 (+0000) Subject: scm: Capture the full credentials of the scm sender X-Git-Tag: v3.1-rc2~19^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e33f7a9f37d486f4c6cce5de18a6eea11d68f64f;p=platform%2Fkernel%2Flinux-exynos.git scm: Capture the full credentials of the scm sender This patch corrects an erroneous update of credential's gid with uid introduced in commit 257b5358b32f17 since 2.6.36. Signed-off-by: Tim Chen Acked-by: Eric Dumazet Reviewed-by: James Morris Signed-off-by: David S. Miller --- diff --git a/net/core/scm.c b/net/core/scm.c index 4c1ef02..811b53f 100644 --- a/net/core/scm.c +++ b/net/core/scm.c @@ -192,7 +192,7 @@ int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *p) goto error; cred->uid = cred->euid = p->creds.uid; - cred->gid = cred->egid = p->creds.uid; + cred->gid = cred->egid = p->creds.gid; put_cred(p->cred); p->cred = cred; }