From d84ed2bd132609d2ed6dd9c00a1d7cb2cf94409d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 11 May 2017 14:00:25 -0400 Subject: [PATCH] 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: ..." --- src/network/networkd-route.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index a1c60c4..bbfcdb2 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; } -- 2.7.4