From: Pavel Tvrdik Date: Tue, 26 Apr 2016 13:55:24 +0000 (+0200) Subject: BIRD Client: Improve output asynchronous message in birdc X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b0472587adb83e1e9a521b05d148a1275d0aaea;p=thirdparty%2Fbird.git BIRD Client: Improve output asynchronous message in birdc --- 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 &&