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>
This commit is contained in:
J. Bruce Fields 2010-03-02 15:49:21 -05:00
parent 301e99ce4a
commit ccdb357ccb
1 changed files with 1 additions and 1 deletions

View File

@ -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");