diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-12-16 22:30:36 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-01-23 21:52:43 +0100 |
| commit | 0bf5b1cbe3812e748d459fa4c4fb6596e072e7bd (patch) | |
| tree | 192e6f292edc83b74016c74547a3cd76101710b2 /tools/permutations.c | |
| parent | 61617d382e018adf7b148bf4d18d6a0fb1fb8645 (diff) | |
lib: parser: simplify OPTION_TKN & SELECTOR_TKN
These are functionally identical as "fork" tokens.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tools/permutations.c')
| -rw-r--r-- | tools/permutations.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/permutations.c b/tools/permutations.c index 8db51ee037..0ca980b259 100644 --- a/tools/permutations.c +++ b/tools/permutations.c @@ -70,7 +70,7 @@ permute (struct graph_node *start) for (ALL_LIST_ELEMENTS_RO (position,ln,gnn)) { struct cmd_token *tt = gnn->data; - if (tt->type < SELECTOR_TKN) + if (tt->type < SPECIAL_TKN) fprintf (stdout, "%s ", tt->text); } fprintf (stdout, "\n"); |
