From 6240b76294c2e4b343f0fdf400c096ffaf18b301 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Sun, 14 Aug 2011 23:17:37 -0500 Subject: [PATCH] gatserver: Fix not processing after async error If we send an async error response, all future commands are ignored. --- gatchat/gatserver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gatchat/gatserver.c b/gatchat/gatserver.c index a39bfa6d..8579de20 100644 --- a/gatchat/gatserver.c +++ b/gatchat/gatserver.c @@ -223,6 +223,7 @@ void g_at_server_send_final(GAtServer *server, GAtServerResult result) return; } + server->final_async = FALSE; send_numeric(server, result); }