authd: also check size correctly

This commit is contained in:
William Pitcock 2016-03-25 21:12:28 -05:00
parent c63cd21e6a
commit 58c343f4a8

View file

@ -64,7 +64,7 @@ handle_reload(int parc, char *parv[])
if(parc < 2)
{
/* Reload all handlers */
for(size_t i = 0; i < sizeof(authd_reload_handlers); i++)
for(size_t i = 0; i < 256; i++)
{
if ((handler = authd_reload_handlers[(unsigned char) i]) != NULL)
handler(parv[1][0]);