summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2024-10-31 10:47:48 +0200
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-10-31 13:14:40 +0000
commit644211270fba93597b59e5908c20a99a4469cfe1 (patch)
tree23482f9041f6539aaf20d40163b96e6c90cfd081
parent4e23ebed1e83f8d8d1cddaa2bac9296ac361ce59 (diff)
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 <donatas@opensourcerouting.org> (cherry picked from commit 25ae643996d338b8230fb15a9064843fe85de224)
-rw-r--r--zebra/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/main.c b/zebra/main.c
index dd6249eff5..4d9b7c3bbe 100644
--- a/zebra/main.c
+++ b/zebra/main.c
@@ -341,7 +341,7 @@ int main(int argc, char **argv)
" -e, --ecmp Specify ECMP to use.\n"
" -r, --retain When program terminates, retain added route by zebra.\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"