Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccdb357c authored by J. Bruce Fields's avatar J. Bruce Fields
Browse files

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: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
parent 301e99ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");