From 64dac4ffb9316ab51754822713c1bab6444491ac Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Fri, 4 Jan 2019 19:08:10 -0200 Subject: [PATCH] ripd: fix unsetting of authentication password Regression introduced by commit a6233bfc. Signed-off-by: Renato Westphal --- ripd/rip_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ripd/rip_cli.c b/ripd/rip_cli.c index 6e5c01b6db..149b30b5d4 100644 --- a/ripd/rip_cli.c +++ b/ripd/rip_cli.c @@ -915,7 +915,7 @@ DEFPY (no_ip_rip_authentication_string, "Authentication string\n" "Authentication string\n") { - nb_cli_enqueue_change(vty, "./authentication-password", NB_OP_MODIFY, + nb_cli_enqueue_change(vty, "./authentication-password", NB_OP_DELETE, NULL); return nb_cli_apply_changes(vty, "./frr-ripd:rip"); -- 2.39.5