0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 19:18:35 +02:00

authd: warn on a bad command

This commit is contained in:
Elizabeth Myers 2016-04-02 05:05:28 -05:00
parent 6d0fafec99
commit b0326abdc9

View file

@ -294,6 +294,12 @@ parse_authd_reply(rb_helper * helper)
cmd->fn(parc, parv);
}
else
{
iwarn("authd sent us a bad command type: %c", *parv[0]);
restart_authd();
continue;
}
}
}