1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-09 12:58:26 +03:00

network: fix typo

IFLA_IPTUN_LINK -> VETH_INFO_PEER
This commit is contained in:
Rami Rosen 2014-11-08 12:59:01 +02:00 committed by David Herrmann
parent 599b6322f1
commit ed7fb9cb23

View File

@ -39,7 +39,7 @@ static int netdev_veth_fill_message_create(NetDev *netdev, Link *link, sd_rtnl_m
r = sd_rtnl_message_open_container(m, VETH_INFO_PEER);
if (r < 0) {
log_error_netdev(netdev,
"Could not append IFLA_IPTUN_LINK attribute: %s",
"Could not append VETH_INFO_PEER attribute: %s",
strerror(-r));
return r;
}