summaryrefslogtreecommitdiff
path: root/ripngd/ripng_main.c
diff options
context:
space:
mode:
authorEmanuele Di Pascale <emanuele@voltanet.io>2019-05-22 17:42:40 +0200
committerEmanuele Di Pascale <emanuele@voltanet.io>2019-05-22 17:42:40 +0200
commitf28963f7454ef0fba12f6ed310fec0fb57531665 (patch)
tree123d35964c4bd3f45b95f8aaa22e64e71f8a3c29 /ripngd/ripng_main.c
parentf136efabe9b1572f048332de901a4dc2efd045d4 (diff)
bgpd, ripd, ripngd: remove deprecated -r option
Signed-off-by: Emanuele Di Pascale <emanuele@voltanet.io>
Diffstat (limited to 'ripngd/ripng_main.c')
-rw-r--r--ripngd/ripng_main.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c
index c755bd83ce..4b027019c0 100644
--- a/ripngd/ripng_main.c
+++ b/ripngd/ripng_main.c
@@ -41,10 +41,7 @@
#include "ripngd/ripngd.h"
/* RIPngd options. */
-#if CONFDATE > 20190521
- CPP_NOTICE("-r / --retain has reached deprecation EOL, remove")
-#endif
-struct option longopts[] = {{"retain", no_argument, NULL, 'r'}, {0}};
+struct option longopts[] = {{0}};
/* ripngd privileges */
zebra_capabilities_t _caps_p[] = {ZCAP_NET_RAW, ZCAP_BIND, ZCAP_SYS_ADMIN};
@@ -132,10 +129,7 @@ FRR_DAEMON_INFO(ripngd, RIPNG, .vty_port = RIPNG_VTY_PORT,
.yang_modules = ripngd_yang_modules,
.n_yang_modules = array_size(ripngd_yang_modules), )
-#if CONFDATE > 20190521
-CPP_NOTICE("-r / --retain has reached deprecation EOL, remove")
-#endif
-#define DEPRECATED_OPTIONS "r"
+#define DEPRECATED_OPTIONS ""
/* RIPngd main routine. */
int main(int argc, char **argv)