mirror of
https://github.com/matrix-construct/construct
synced 2025-01-15 17:16:49 +01:00
authd: warn on a bad command
This commit is contained in:
parent
6d0fafec99
commit
b0326abdc9
1 changed files with 6 additions and 0 deletions
|
@ -294,6 +294,12 @@ parse_authd_reply(rb_helper * helper)
|
||||||
|
|
||||||
cmd->fn(parc, parv);
|
cmd->fn(parc, parv);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
iwarn("authd sent us a bad command type: %c", *parv[0]);
|
||||||
|
restart_authd();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue