networkd: fix copy-pasto in error message

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-05-14 16:47:59 -04:00
parent b9642f4199
commit d9d9439347
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ int route_remove(Route *route, Link *link,
else if (route->family == AF_INET6)
r = sd_netlink_message_append_in6_addr(req, RTA_SRC, &route->src.in6);
if (r < 0)
return log_error_errno(r, "Could not append RTA_DST attribute: %m");
return log_error_errno(r, "Could not append RTA_SRC attribute: %m");
r = sd_rtnl_message_route_set_src_prefixlen(req, route->src_prefixlen);
if (r < 0)