summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorTorstein Husebø <torstein@huseboe.net>2015-02-09 14:18:57 +0100
committerMartin Pitt <martin.pitt@ubuntu.com>2015-02-09 14:32:49 +0100
commite2acdb6b0f68d9b4152708a9f21bf9e11f8b9e7e (patch)
tree965f003be5a20f86b5aa93bc18c7ee8ef543d5fb /src/network
parentc8f5edeab0b007081cf89aeb1d23d428382c2a4f (diff)
treewide: correct typos and use consistent "MAC" spelling
Diffstat (limited to 'src/network')
-rw-r--r--src/network/networkd-link.c2
-rw-r--r--src/network/networkd-network.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
index 1f96c634ef..0b1cac1055 100644
--- a/src/network/networkd-link.c
+++ b/src/network/networkd-link.c
@@ -1133,7 +1133,7 @@ static int link_up(Link *link) {
r = sd_rtnl_message_close_container(req);
if (r < 0) {
- log_link_error(link, "Could not close IFLA_AF_SPEC contaire: %s", strerror(-r));
+ log_link_error(link, "Could not close IFLA_AF_SPEC container: %s", strerror(-r));
return r;
}
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c
index 9ebc2d15aa..3ebd4d7d58 100644
--- a/src/network/networkd-network.c
+++ b/src/network/networkd-network.c
@@ -680,12 +680,12 @@ int config_parse_token(
r = in_addr_is_null(AF_INET6, &buffer);
if (r < 0) {
- log_syntax(unit, LOG_ERR, filename, line, -r, "IPv6 token canno t be the ANY address, ignoring: %s", rvalue);
+ log_syntax(unit, LOG_ERR, filename, line, -r, "IPv6 token can not be the ANY address, ignoring: %s", rvalue);
return 0;
}
if ((buffer.in6.s6_addr32[0] | buffer.in6.s6_addr32[1]) != 0) {
- log_syntax(unit, LOG_ERR, filename, line, EINVAL, "IPv6 token canno t be longer than 64 bits, ignoring: %s", rvalue);
+ log_syntax(unit, LOG_ERR, filename, line, EINVAL, "IPv6 token can not be longer than 64 bits, ignoring: %s", rvalue);
return 0;
}