From: Donatas Abraitis Date: Thu, 31 Oct 2024 08:47:48 +0000 (+0200) Subject: zebra: Add missing new line for help string X-Git-Tag: docker/9.1.3~12^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=61484bb0bcf12a6907d00fe120c854c1b553566d;p=matthieu%2Ffrr.git zebra: Add missing new line for help string ``` -A, --asic-offload FRR is interacting with an asic underneath the linux kernel --v6-with-v4-nexthops Underlying dataplane supports v6 routes with v4 nexthops -s, --nl-bufsize Set netlink receive buffer size ``` Fixes: 1f5611c06d1c243b42279748788f0627793ead9c ("zebra: Allow zebra cli to accept v6 routes with v4 nexthops") Signed-off-by: Donatas Abraitis (cherry picked from commit 25ae643996d338b8230fb15a9064843fe85de224) --- diff --git a/zebra/main.c b/zebra/main.c index b660118824..0b9df2b698 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -320,7 +320,7 @@ int main(int argc, char **argv) " -r, --retain When program terminates, retain added route by zebra.\n" " -K, --graceful_restart Graceful restart at the kernel level, timer in seconds for expiration\n" " -A, --asic-offload FRR is interacting with an asic underneath the linux kernel\n" - " --v6-with-v4-nexthops Underlying dataplane supports v6 routes with v4 nexthops" + " --v6-with-v4-nexthops Underlying dataplane supports v6 routes with v4 nexthops\n" #ifdef HAVE_NETLINK " -s, --nl-bufsize Set netlink receive buffer size\n" " -n, --vrfwnetns Use NetNS as VRF backend\n"