networkctl: fix dispatch_verb() table

VERB_DEFAULT may only appear once.
This commit is contained in:
Lennart Poettering
2016-02-19 18:21:17 +01:00
parent 0070333f26
commit 1fb82beb38

View File

@@ -956,9 +956,9 @@ static int parse_argv(int argc, char *argv[]) {
static int networkctl_main(int argc, char *argv[]) {
const Verb verbs[] = {
{ "list", VERB_ANY, 1, VERB_DEFAULT, list_links },
{ "status", 1, VERB_ANY, 0, link_status },
{ "lldp", VERB_ANY, 1, VERB_DEFAULT, link_lldp_status },
{ "list", VERB_ANY, 1, VERB_DEFAULT, list_links },
{ "status", VERB_ANY, VERB_ANY, 0, link_status },
{ "lldp", VERB_ANY, 1, 0, link_lldp_status },
{}
};