From 68fc8f1f26e44aaaac9b39421519863e5b18bc7a Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Thu, 15 Jun 2017 16:21:58 +0200 Subject: [PATCH] ospfd: fix typo in error message ... and print the invalid input value Signed-off-by: David Lamparter --- ospfd/ospf_ri.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ospfd/ospf_ri.c b/ospfd/ospf_ri.c index bd2506d2d4..6912bc156f 100644 --- a/ospfd/ospf_ri.c +++ b/ospfd/ospf_ri.c @@ -1194,7 +1194,8 @@ DEFUN (router_info, { if (!inet_aton (area, &OspfRI.area_id)) { - vty_out (vty, "Please specifya valid Area ID%s", VTY_NEWLINE); + vty_out (vty, "%% specified Area ID %s is invalid%s", + area, VTY_NEWLINE); return CMD_WARNING; } scope = OSPF_OPAQUE_AREA_LSA;