summaryrefslogtreecommitdiff
path: root/tools/permutations.c
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2017-01-26 09:59:03 -0500
committerLou Berger <lberger@labn.net>2017-01-26 09:59:03 -0500
commit1c404af8b58696b70313c728a39edc2983ed9827 (patch)
tree8241673a4870cb2b5a8d1262d3a793113ab60e64 /tools/permutations.c
parent4f280b15b1049b42241e9c0ac7d2e4fa0c8e3b22 (diff)
parent1e78204400361625235b3e7ea5d2c570b16d7c55 (diff)
Merge branch 'master' into working/master/patch-set/4-misc-fixes
Merged pull request with master Conflicts: bgpd/bgp_mplsvpn.c bgpd/bgp_route.c bgpd/rfapi/rfapi_vty.c
Diffstat (limited to 'tools/permutations.c')
-rw-r--r--tools/permutations.c2
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");