From: Quentin Young Date: Fri, 1 Jun 2018 20:31:52 +0000 (+0000) Subject: lib: remove DEFUN_DEPRECATED X-Git-Tag: frr-6.1-dev~251^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=61cdcbdc022e7f3f8d5ff42a12bd1b60b855878f;p=mirror%2Ffrr.git lib: remove DEFUN_DEPRECATED Signed-off-by: Quentin Young --- diff --git a/lib/command.h b/lib/command.h index 395c971c55..2d333b098a 100644 --- a/lib/command.h +++ b/lib/command.h @@ -240,9 +240,6 @@ struct cmd_node { #define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \ DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN) -#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \ - DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) - /* DEFUN_NOSH for commands that vtysh should ignore */ #define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \ DEFUN(funcname, cmdname, cmdstr, helpstr)