]> git.decadent.org.uk Git - nfs-utils.git/commit
gssd_proc: use pollsize, not FD_ALLOC_BLOCK, in get_poll_index()
authorNeilBrown <neilb@suse.de>
Wed, 28 Nov 2012 19:32:00 +0000 (14:32 -0500)
committerSteve Dickson <steved@redhat.com>
Wed, 28 Nov 2012 19:48:01 +0000 (14:48 -0500)
commitc889e30a376e18fdef8ec74ade9897aa9e3d803a
tree29336165bfe303b5f3389b4d85b51a72a11de0ec
parenta56989b6658c3555d965f51ff636754dec440e87
gssd_proc: use pollsize, not FD_ALLOC_BLOCK, in get_poll_index()

get_poll_index wants to walk the entire "pollarray", but uses
the constant FD_ALLOC_BLOCK, rather than the variable
pollsize (which has the same value).  If we want to make the
size of the array variable, it is best not to use the constant.

As pollsize is 'unsigned long', 'i' should be too.

Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/gssd/gssd_proc.c