diff options
author | Sebastian Pucilowski <smopucilowski@gmail.com> | 2024-04-28 02:34:02 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-04-28 04:47:55 +0200 |
commit | e6c4b5dc5238c4145e53cf399b6f70df605e206b (patch) | |
tree | 8a4bae71a09c991ea76773f205623647a607e375 /src/network/networkd-link.c | |
parent | NEWS: add warnings about read-only fs and libkmod being dlopen'ed (diff) | |
download | systemd-e6c4b5dc5238c4145e53cf399b6f70df605e206b.tar.xz systemd-e6c4b5dc5238c4145e53cf399b6f70df605e206b.zip |
network: DHCP version logging typos
Some DHCP client log messages report "DHCP4" or "DHCP6" instead of
"DHCPv4" or "DHCPv6" as used within the rest of the codebase. Typos
fixed.
Diffstat (limited to 'src/network/networkd-link.c')
-rw-r--r-- | src/network/networkd-link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 61e0e16818..6b0f09926a 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -2538,7 +2538,7 @@ static int link_update_name(Link *link, sd_netlink_message *message) { if (link->dhcp6_client) { r = sd_dhcp6_client_set_ifname(link->dhcp6_client, link->ifname); if (r < 0) - return log_link_debug_errno(link, r, "Failed to update interface name in DHCP6 client: %m"); + return log_link_debug_errno(link, r, "Failed to update interface name in DHCPv6 client: %m"); } if (link->ndisc) { |