diff options
author | Torstein Husebø <torstein@huseboe.net> | 2014-12-03 20:59:00 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-12-03 21:36:10 +0100 |
commit | 144232a8e0ea77eed8c5a456832758681b5b3511 (patch) | |
tree | 9c19c9dfd6cb93ec6f07990d681434c0c207c2e4 /src/network/networkctl.c | |
parent | 523c620bcd657f22cb52e6b78881cbb1f7d6832a (diff) |
networkd: fix typo
V2: found another one
Diffstat (limited to 'src/network/networkctl.c')
-rw-r--r-- | src/network/networkctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/networkctl.c b/src/network/networkctl.c index 622533053c..a763630061 100644 --- a/src/network/networkctl.c +++ b/src/network/networkctl.c @@ -333,7 +333,7 @@ static int get_gateway_description(sd_rtnl *rtnl, struct udev_hwdb *hwdb, int if r = sd_rtnl_message_neigh_get_ifindex(m, &ifi); if (r < 0) { - log_error_errno(r, "colud not get ifindex: %m"); + log_error_errno(r, "could not get ifindex: %m"); continue; } @@ -427,7 +427,7 @@ static int dump_gateways(sd_rtnl *rtnl, struct udev_hwdb *hwdb, const char *pref r = sd_rtnl_message_read_u32(m, RTA_OIF, &ifi); if (r < 0) { - log_error_errno(r, "colud not get RTA_OIF: %m"); + log_error_errno(r, "could not get RTA_OIF: %m"); continue; } |