From c3d89003a4f47701c7b3cd183878687c5476ce44 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 27 Jan 2017 15:36:09 -0500 Subject: [PATCH] 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 --- lib/route_types.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5