0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 15:41:54 +00:00

BIRD Client: fix doubled 'bird> bird> ' prompt

Doubled cli prompt appeared in cli after reconfiguration. This bug
relates to RC_NOTIFY message from bird daemon.
This commit is contained in:
Pavel Tvrdik 2016-04-26 15:49:57 +02:00
parent 6706102c41
commit 7a7bb6def2

View File

@ -42,7 +42,7 @@ input_notify(int prompt)
if (!prompt || !interactive)
return;
printf("bird> ");
printf("\rbird> ");
fflush(stdout);
}