mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
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:
parent
bd2137018c
commit
279e010516
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user