linux: make reading unixusers from proc actually work

our indentation did not match our braces so we would never read all the
objects in each unixuser hash chain. add the missing braces

Change-Id: I001b55f0d43639124b06758095664a31e8230db6
Reviewed-on: http://gerrit.openafs.org/11094
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: D Brashear <shadow@your-file-system.com>
This commit is contained in:
D Brashear 2014-04-22 11:38:44 -04:00
parent bd2137018c
commit 279e010516

View File

@ -151,9 +151,10 @@ uu_start(struct seq_file *m, loff_t *pos)
for (i = 0; i < NUSERS; i++) {
for (tu = afs_users[i]; tu; tu = tu->next) {
if (++n == *pos)
if (++n == *pos) {
ret = tu;
goto done;
}
}
}