From: Zbigniew Jędrzejewski-Szmek Date: Thu, 11 May 2017 18:00:25 +0000 (-0400) Subject: networkd: pretiffy message about invalid prefix X-Git-Tag: v234~215^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d84ed2bd132609d2ed6dd9c00a1d7cb2cf94409d;p=thirdparty%2Fsystemd.git 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: ..." --- diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index a1c60c49b11..bbfcdb23949 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -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; }