diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2017-09-24 18:39:41 +0200 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-11-08 02:54:54 +0000 |
commit | 4a73d5e84383cf3fe02d730a7b21d393024054e4 (patch) | |
tree | fa9c3fd3fe246a7af97f8abd27eb63e344279b8c | |
parent | 858cfecf9d142c5577b755ebc84d3f88375eb726 (diff) |
vty: deprecate now empty node commands
Following I5021c64a787b63314e0f2f1cba0b8fc7bff4f09b a deprecation of
vty_install_default() and install_default() commands is indicated.
However, compiler warnings may clutter build output or even fail strict builds,
hence I am submitting the deprecation in a separate patch.
Depends: I5021c64a787b63314e0f2f1cba0b8fc7bff4f09b
Change-Id: Icf5d83f641e838cebcccc635a043e94ba352abff
-rw-r--r-- | include/osmocom/vty/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h index 8fbdb7b7..13d6e89d 100644 --- a/include/osmocom/vty/command.h +++ b/include/osmocom/vty/command.h @@ -360,12 +360,12 @@ struct desc { /* Prototypes. */ void install_node(struct cmd_node *, int (*)(struct vty *)); -void install_default(int node_type); +void install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()"); void install_element(int node_type, struct cmd_element *); void install_element_ve(struct cmd_element *cmd); void sort_node(void); -void vty_install_default(int node_type); +void vty_install_default(int node_type) OSMO_DEPRECATED("Now happens implicitly with install_node()"); /* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated string with a space between each element (allocated using |