From: David Lamparter Date: Sun, 6 Aug 2017 02:17:13 +0000 (+0200) Subject: vtysh: add missing \n on warning message X-Git-Tag: frr-4.0-dev~450^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F918%2Fhead;p=mirror%2Ffrr.git vtysh: add missing \n on warning message Oops, missed this in review. Signed-off-by: David Lamparter --- diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 82f44be3a8..5886d39c19 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -235,7 +235,7 @@ static int vtysh_client_run_all(struct vtysh_client *head_client, } if (wrong_instance && !correct_instance && fp) { fprintf(fp, - "%% [%s]: command ignored as it targets an instance that is not running", + "%% [%s]: command ignored as it targets an instance that is not running\n", head_client->name); rc_all = CMD_WARNING_CONFIG_FAILED; }