From: J. Bruce Fields Date: Tue, 2 Mar 2010 20:49:21 +0000 (-0500) Subject: svcrpc: treat uid's as unsigned X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ccdb357ccb77cc4cbe4f7abee9efd19957f0753a;p=linux.git svcrpc: treat uid's as unsigned We should consistently treat uid's as unsigned--it's confusing when the display of uid's in the cache contents isn't consistent with their representation in upcalls. Signed-off-by: J. Bruce Fields --- diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 97f0e9e120248..afdcb0459a831 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -624,7 +624,7 @@ static int unix_gid_show(struct seq_file *m, else glen = 0; - seq_printf(m, "%d %d:", ug->uid, glen); + seq_printf(m, "%u %d:", ug->uid, glen); for (i = 0; i < glen; i++) seq_printf(m, " %d", GROUP_AT(ug->gi, i)); seq_printf(m, "\n");