timeout_remove(&client->to_auth_waiting);
- client_notify_auth_ready(client);
+ T_BEGIN {
+ client_notify_auth_ready(client);
+ } T_END;
if (!client_does_custom_io(client) && client->input_blocked) {
client->input_blocked = FALSE;
{
struct client *client, *next;
- for (client = clients; client != NULL; client = next) {
+ for (client = clients; client != NULL; client = next) T_BEGIN {
next = client->next;
client_notify_disconnect(client,
CLIENT_DISCONNECT_SYSTEM_SHUTDOWN, reason);
client_destroy(client, reason);
- }
+ } T_END;
}
void clients_destroy_all(void)