mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
networkd: pretiffy message about invalid prefix
We know how the field we are parsing is called, let's put this information in the error message: "Route Source= prefix is invalid, ignoring assignment: ..." "Route Destination= prefix is invalid, ignoring assignment: ..."
This commit is contained in:
@@ -776,7 +776,9 @@ int config_parse_destination(const char *unit,
|
||||
if (r < 0) {
|
||||
r = in_addr_prefix_from_string(rvalue, AF_INET6, &buffer, &prefixlen);
|
||||
if (r < 0) {
|
||||
log_syntax(unit, LOG_ERR, filename, line, r, "Route source or destination prefix is invalid, ignoring assignment: %s", rvalue);
|
||||
log_syntax(unit, LOG_ERR, filename, line, r,
|
||||
"Route %s= prefix is invalid, ignoring assignment: %s",
|
||||
lvalue, rvalue);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user