summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorRami Rosen <ramirose@gmail.com>2014-11-08 12:59:01 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-11-08 12:42:44 +0100
commited7fb9cb235d2aedb755dcb8a5a5d9cdffba1519 (patch)
treea157267b9a361d75ff2cc90225908c3d3604f0f4 /src/network
parent599b6322f19ec619ddc294d0e7880b669040cf66 (diff)
network: fix typo
IFLA_IPTUN_LINK -> VETH_INFO_PEER
Diffstat (limited to 'src/network')
-rw-r--r--src/network/networkd-netdev-veth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-netdev-veth.c b/src/network/networkd-netdev-veth.c
index da09ef908f..ca2bb0718a 100644
--- a/src/network/networkd-netdev-veth.c
+++ b/src/network/networkd-netdev-veth.c
@@ -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;
}