diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-10-28 04:03:52 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-10-28 04:03:52 +0200 |
commit | 29de4f7304bd02bd52bf484b08e704baf9e23948 (patch) | |
tree | 3362b9bd70ad5c37d6fd1e12200cea2fc5f1e4ce /src/network/networkd-routing-policy-rule.c | |
parent | wait-online: ignore -ENODATA from sd_network_link_get_required_for_online() (diff) | |
download | systemd-29de4f7304bd02bd52bf484b08e704baf9e23948.tar.xz systemd-29de4f7304bd02bd52bf484b08e704baf9e23948.zip |
network: Table= also accepts table name
Diffstat (limited to '')
-rw-r--r-- | src/network/networkd-routing-policy-rule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-routing-policy-rule.c b/src/network/networkd-routing-policy-rule.c index 71c4360fa3..130ed5e0a7 100644 --- a/src/network/networkd-routing-policy-rule.c +++ b/src/network/networkd-routing-policy-rule.c @@ -1250,7 +1250,7 @@ int config_parse_routing_policy_rule_table( r = manager_get_route_table_from_string(network->manager, rvalue, &n->table); if (r < 0) { log_syntax(unit, LOG_WARNING, filename, line, r, - "Could not parse RPDB rule route table number \"%s\", ignoring assignment: %m", rvalue); + "Could not parse RPDB rule route table \"%s\", ignoring assignment: %m", rvalue); return 0; } |