mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-10 18:47:22 +00:00
A one-off error was preventing a output of the last user. This was caught
by Anthony Yeung at Newisys.
This commit is contained in:
parent
be2c0c4b03
commit
c4699aba9c
@ -259,8 +259,8 @@ ipmi_print_user_list(
|
||||
|
||||
|
||||
++current_user_id;
|
||||
} while((current_user_id < user_access.maximum_ids) &&
|
||||
(current_user_id < 63)); /* Absolute maximum allowed by spec */
|
||||
} while((current_user_id <= user_access.maximum_ids) &&
|
||||
(current_user_id <= 63)); /* Absolute maximum allowed by spec */
|
||||
|
||||
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user