summaryrefslogtreecommitdiff
path: root/src/network/networkd-netdev-tunnel.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-07-17 08:10:10 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-07-17 08:14:15 -0400
commit6eb33ab207d090a44f6a71c9e303a3efaabd0946 (patch)
tree1a2a058b93f87eba2a21f2c46873a4eb05d0825f /src/network/networkd-netdev-tunnel.c
parentfa8b8030a476f1a4fd8c0f00423351788d36bd3a (diff)
networkd: fix colud typo
sztanpet> if your already there, might fixing "Colud" to Could in 53af3b7
Diffstat (limited to 'src/network/networkd-netdev-tunnel.c')
-rw-r--r--src/network/networkd-netdev-tunnel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/networkd-netdev-tunnel.c b/src/network/networkd-netdev-tunnel.c
index 8acb74688d..2ecfef8e5a 100644
--- a/src/network/networkd-netdev-tunnel.c
+++ b/src/network/networkd-netdev-tunnel.c
@@ -66,7 +66,7 @@ static int netdev_ipip_fill_message_create(NetDev *netdev, Link *link, sd_rtnl_m
r = sd_rtnl_message_append_ether_addr(m, IFLA_ADDRESS, netdev->mac);
if (r < 0) {
log_error_netdev(netdev,
- "Colud not append IFLA_ADDRESS attribute: %s",
+ "Could not append IFLA_ADDRESS attribute: %s",
strerror(-r));
return r;
}
@@ -174,7 +174,7 @@ static int netdev_sit_fill_message_create(NetDev *netdev, Link *link, sd_rtnl_me
r = sd_rtnl_message_append_ether_addr(m, IFLA_ADDRESS, netdev->mac);
if (r < 0) {
log_error_netdev(netdev,
- "Colud not append IFLA_ADDRESS attribute: %s",
+ "Could not append IFLA_ADDRESS attribute: %s",
strerror(-r));
return r;
}
@@ -282,7 +282,7 @@ static int netdev_gre_fill_message_create(NetDev *netdev, Link *link, sd_rtnl_me
r = sd_rtnl_message_append_ether_addr(m, IFLA_ADDRESS, netdev->mac);
if (r < 0) {
log_error_netdev(netdev,
- "Colud not append IFLA_ADDRESS attribute: %s",
+ "Could not append IFLA_ADDRESS attribute: %s",
strerror(-r));
return r;
}
@@ -398,7 +398,7 @@ static int netdev_vti_fill_message_create(NetDev *netdev, Link *link, sd_rtnl_me
r = sd_rtnl_message_append_ether_addr(m, IFLA_ADDRESS, netdev->mac);
if (r < 0) {
log_error_netdev(netdev,
- "Colud not append IFLA_ADDRESS attribute: %s",
+ "Could not append IFLA_ADDRESS attribute: %s",
strerror(-r));
return r;
}