From 5b0472587adb83e1e9a521b05d148a1275d0aaea Mon Sep 17 00:00:00 2001 From: Pavel Tvrdik Date: Tue, 26 Apr 2016 15:55:24 +0200 Subject: [PATCH] BIRD Client: Improve output asynchronous message in birdc --- client/client.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/client.c b/client/client.c index 5d8f1b379..56194a098 100644 --- a/client/client.c +++ b/client/client.c @@ -355,8 +355,13 @@ server_got_reply(char *x) int code = 0; int len = 0; - if (*x == '+') /* Async reply */ +// input_notify(0); + + if (*x == '+') { /* Async reply */ + busy = 1; + input_notify(0); PRINTF(len, ">>> %s\n", x+1); + } else if (x[0] == ' ') /* Continuation */ PRINTF(len, "%s%s\n", verbose ? " " : "", x+1); else if (strlen(x) > 4 && -- 2.47.2