summaryrefslogtreecommitdiff
path: root/lib/command_parse.y
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-09-22 00:27:22 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-09-22 00:27:22 +0000
commitffc9de904b19ce03e41c6ebb533804c85001d1ce (patch)
tree1541373fccbe02d404c916f2e83d01c732f14b16 /lib/command_parse.y
parent287a4acf837fbb0a09e5e784134714e6fe2a84a8 (diff)
lib: Remove NUMBER_TKN leftovers
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/command_parse.y')
-rw-r--r--lib/command_parse.y4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/command_parse.y b/lib/command_parse.y
index d8ba98db86..63a6f83c35 100644
--- a/lib/command_parse.y
+++ b/lib/command_parse.y
@@ -521,10 +521,6 @@ cmp_token (struct cmd_token *first, struct cmd_token *second)
if (first->min != second->min || first->max != second->max)
return 0;
break;
- case NUMBER_TKN:
- if (first->value != second->value) return 0;
- break;
-
/* selectors and options should be equal if their subgraphs are equal,
* but the graph isomorphism problem is not known to be solvable in
* polynomial time so we consider selectors and options inequal in all