From: Donald Sharp Date: Fri, 27 Jan 2017 20:36:09 +0000 (-0500) Subject: lib: Fix Auto generation of redistribution strings X-Git-Tag: frr-3.0-branchpoint~66^2~4 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=c3d89003a4f47701c7b3cd183878687c5476ce44;p=matthieu%2Ffrr.git lib: Fix Auto generation of redistribution strings When we changed the parser we forgot to update this script to modify the '(...)' to '<...>' Signed-off-by: Donald Sharp --- diff --git a/lib/route_types.pl b/lib/route_types.pl index 62c7417b84..27ca950787 100755 --- a/lib/route_types.pl +++ b/lib/route_types.pl @@ -149,7 +149,7 @@ sub collect { push @names, "any"; push @help, " \"Any of the above protocols\\n\""; } - return ("\"(" . join("|", @names) . ")\"", join(" \\\n", @help)); + return ("\"<" . join("|", @names) . ">\"", join(" \\\n", @help)); } for my $daemon (sort keys %daemons) {