diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-07-07 11:51:29 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-07-07 12:06:26 +0200 |
commit | 0da425df6580684f286cb2c7ad84612841cc5797 (patch) | |
tree | 0926bebdde77d10c631f7b9e81faafb6a38927c2 /src/network/netdev | |
parent | all: fix minor typos (diff) | |
download | systemd-0da425df6580684f286cb2c7ad84612841cc5797.tar.xz systemd-0da425df6580684f286cb2c7ad84612841cc5797.zip |
networkd: use capitalized "IP" and "TOS" in messages
Diffstat (limited to 'src/network/netdev')
-rw-r--r-- | src/network/netdev/bond.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/netdev/bond.c b/src/network/netdev/bond.c index 23bd3e1e46..8c1ba11e5f 100644 --- a/src/network/netdev/bond.c +++ b/src/network/netdev/bond.c @@ -327,7 +327,7 @@ int config_parse_arp_ip_target_address( r = extract_first_word(&rvalue, &n, NULL, 0); if (r < 0) { log_syntax(unit, LOG_ERR, filename, line, r, - "Failed to parse Bond ARP ip target address, ignoring assignment: %s", + "Failed to parse Bond ARP IP target address, ignoring assignment: %s", rvalue); return 0; } @@ -337,7 +337,7 @@ int config_parse_arp_ip_target_address( r = in_addr_from_string(AF_INET, n, &ip); if (r < 0) { log_syntax(unit, LOG_ERR, filename, line, r, - "Bond ARP ip target address is invalid, ignoring assignment: %s", n); + "Bond ARP IP target address is invalid, ignoring assignment: %s", n); continue; } @@ -347,7 +347,7 @@ int config_parse_arp_ip_target_address( if (ordered_set_size(b->arp_ip_targets) >= NETDEV_BOND_ARP_TARGETS_MAX) { log_syntax(unit, LOG_WARNING, filename, line, 0, - "Too many ARP ip targets are specified. The maximum number is %d. Ignoring assignment: %s", + "Too many ARP IP targets are specified. The maximum number is %d. Ignoring assignment: %s", NETDEV_BOND_ARP_TARGETS_MAX, n); continue; } @@ -355,10 +355,10 @@ int config_parse_arp_ip_target_address( r = ordered_set_put(b->arp_ip_targets, UINT32_TO_PTR(ip.in.s_addr)); if (r == -EEXIST) log_syntax(unit, LOG_WARNING, filename, line, r, - "Bond ARP ip target address is duplicated, ignoring assignment: %s", n); + "Bond ARP IP target address is duplicated, ignoring assignment: %s", n); if (r < 0) log_syntax(unit, LOG_ERR, filename, line, r, - "Failed to store bond ARP ip target address '%s', ignoring assignment: %m", n); + "Failed to store bond ARP IP target address '%s', ignoring assignment: %m", n); } } |