aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/svcauth_unix.c
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2010-03-02 15:49:21 -0500
committerJ. Bruce Fields <bfields@citi.umich.edu>2010-03-02 15:49:21 -0500
commitccdb357ccb77cc4cbe4f7abee9efd19957f0753a (patch)
tree5faf2de550991aeb7dd7ef42c79eb163ef9a3fbe /net/sunrpc/svcauth_unix.c
parent301e99ce4a2f42a317129230fd42e6cd874c64b0 (diff)
downloadkernel_samsung_smdk4412-ccdb357ccb77cc4cbe4f7abee9efd19957f0753a.zip
kernel_samsung_smdk4412-ccdb357ccb77cc4cbe4f7abee9efd19957f0753a.tar.gz
kernel_samsung_smdk4412-ccdb357ccb77cc4cbe4f7abee9efd19957f0753a.tar.bz2
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 <bfields@citi.umich.edu>
Diffstat (limited to 'net/sunrpc/svcauth_unix.c')
-rw-r--r--net/sunrpc/svcauth_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
index 97f0e9e..afdcb04 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");