diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-03-08 16:13:12 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-03-08 16:15:10 +0100 |
| commit | 4487fc74e8e4ddbf5cde6c3b0a83db3eb828ee11 (patch) | |
| tree | ba095355ba6b29f97c64c8ec184cc0d6087e5cb4 /zebra/zebra_vty.c | |
| parent | 6dd7b12a05387ef8b84ed9d4b8306a715ee64d0d (diff) | |
*: fix some user-visible Quagga remnants
(Note: the allow_delete thing is called "zebra" on the commandline
because that's the clearest context there, while it is called "FRR" in
the CLI because that's considerably less confusing in a vtysh env.)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_vty.c')
| -rw-r--r-- | zebra/zebra_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index ddb037335c..7946089aea 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -3825,7 +3825,7 @@ static_config_ipv6 (struct vty *vty) DEFUN (allow_external_route_update, allow_external_route_update_cmd, "allow-external-route-update", - "Allow Quagga routes to be overwritten by external processes") + "Allow FRR routes to be overwritten by external processes") { allow_delete = 1; @@ -3835,7 +3835,7 @@ DEFUN (allow_external_route_update, DEFUN (no_allow_external_route_update, no_allow_external_route_update_cmd, "no allow-external-route-update", - "Allow Quagga routes to be overwritten by external processes") + "Allow FRR routes to be overwritten by external processes") { allow_delete = 0; |
