diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:22 -0700 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-19 17:47:22 -0700 | 
| commit | 5e3edbf561e73db47366efcfe743fec4916c2fa2 (patch) | |
| tree | 0fe69d0ac00297f3537002e191677c44b71cc659 /ripngd/ripng_routemap.c | |
| parent | 42f7e184884424f903c589f2c3d34613df558073 (diff) | |
'set metric -12' is broken in the parser
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'ripngd/ripng_routemap.c')
| -rw-r--r-- | ripngd/ripng_routemap.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/ripngd/ripng_routemap.c b/ripngd/ripng_routemap.c index a316301ab5..eae4566a60 100644 --- a/ripngd/ripng_routemap.c +++ b/ripngd/ripng_routemap.c @@ -55,10 +55,10 @@ ripng_route_match_add (struct vty *vty, struct route_map_index *index,        switch (ret)  	{  	case RMAP_RULE_MISSING: -	  vty_out (vty, "Can't find rule.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Can't find rule.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	case RMAP_COMPILE_ERROR: -	  vty_out (vty, "Argument is malformed.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Argument is malformed.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	}      } @@ -77,10 +77,10 @@ ripng_route_match_delete (struct vty *vty, struct route_map_index *index,        switch (ret)  	{  	case RMAP_RULE_MISSING: -	  vty_out (vty, "Can't find rule.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Can't find rule.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	case RMAP_COMPILE_ERROR: -	  vty_out (vty, "Argument is malformed.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Argument is malformed.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	}      } @@ -99,10 +99,10 @@ ripng_route_set_add (struct vty *vty, struct route_map_index *index,        switch (ret)  	{  	case RMAP_RULE_MISSING: -	  vty_out (vty, "Can't find rule.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Can't find rule.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	case RMAP_COMPILE_ERROR: -	  vty_out (vty, "Argument is malformed.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Argument is malformed.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	}      } @@ -121,10 +121,10 @@ ripng_route_set_delete (struct vty *vty, struct route_map_index *index,        switch (ret)  	{  	case RMAP_RULE_MISSING: -	  vty_out (vty, "Can't find rule.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Can't find rule.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	case RMAP_COMPILE_ERROR: -	  vty_out (vty, "Argument is malformed.%s", VTY_NEWLINE); +	  vty_out (vty, "RIPng Argument is malformed.%s", VTY_NEWLINE);  	  return CMD_WARNING;  	}      }  | 
