mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 06:12:32 +00:00
lib: fix indentation trainwreck in command_py
Hooooo boooooyyyy... that `default` sure was in an "interesting" place. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
parent
90c8406c20
commit
3be280bb8c
@ -197,21 +197,30 @@ static PyObject *graph_to_pyobj(struct wrap_graph *wgraph,
|
||||
if (gn->data) {
|
||||
struct cmd_token *tok = gn->data;
|
||||
switch (tok->type) {
|
||||
#define item(x) case x: wrap->type = #x; break;
|
||||
item(WORD_TKN) // words
|
||||
item(VARIABLE_TKN) // almost anything
|
||||
item(RANGE_TKN) // integer range
|
||||
item(IPV4_TKN) // IPV4 addresses
|
||||
item(IPV4_PREFIX_TKN) // IPV4 network prefixes
|
||||
item(IPV6_TKN) // IPV6 prefixes
|
||||
item(IPV6_PREFIX_TKN) // IPV6 network prefixes
|
||||
item(MAC_TKN) // MAC address
|
||||
item(MAC_PREFIX_TKN) // MAC address with mask
|
||||
#define item(x) \
|
||||
case x: \
|
||||
wrap->type = #x; \
|
||||
break /* no semicolon */
|
||||
|
||||
/* plumbing types */
|
||||
item(FORK_TKN) item(JOIN_TKN) item(START_TKN)
|
||||
item(END_TKN) item(NEG_ONLY_TKN) default
|
||||
: wrap->type = "???";
|
||||
item(WORD_TKN); // words
|
||||
item(VARIABLE_TKN); // almost anything
|
||||
item(RANGE_TKN); // integer range
|
||||
item(IPV4_TKN); // IPV4 addresses
|
||||
item(IPV4_PREFIX_TKN); // IPV4 network prefixes
|
||||
item(IPV6_TKN); // IPV6 prefixes
|
||||
item(IPV6_PREFIX_TKN); // IPV6 network prefixes
|
||||
item(MAC_TKN); // MAC address
|
||||
item(MAC_PREFIX_TKN); // MAC address with mask
|
||||
|
||||
/* plumbing types */
|
||||
item(FORK_TKN);
|
||||
item(JOIN_TKN);
|
||||
item(START_TKN);
|
||||
item(END_TKN);
|
||||
item(NEG_ONLY_TKN);
|
||||
#undef item
|
||||
default:
|
||||
wrap->type = "???";
|
||||
}
|
||||
|
||||
wrap->deprecated = (tok->attr == CMD_ATTR_DEPRECATED);
|
||||
|
Loading…
Reference in New Issue
Block a user