From c91ae28018ee40c8d46e3450b0a3c53647c43060 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 19 Jun 2009 21:10:51 -0500 Subject: [PATCH] Fixes to parser state when command prompt is used --- gatchat/gatchat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gatchat/gatchat.c b/gatchat/gatchat.c index 0a373721..b400157d 100644 --- a/gatchat/gatchat.c +++ b/gatchat/gatchat.c @@ -606,13 +606,14 @@ static inline void parse_char(GAtChat *chat, char byte) chat->state = PARSER_STATE_PROMPT_COMPLETE; else chat->state = PARSER_STATE_RESPONSE; + break; case PARSER_STATE_RESPONSE_COMPLETE: case PARSER_STATE_PDU_COMPLETE: case PARSER_STATE_MULTILINE_COMPLETE: default: /* This really shouldn't happen */ - assert(TRUE); + assert(FALSE); return; } } @@ -678,6 +679,8 @@ static void new_bytes(GAtChat *p) ring_buffer_drain(p->buf, p->read_so_far); p->read_so_far = 0; + + p->state = PARSER_STATE_IDLE; } }