diff --git a/src/libsystemd-network/sd-dhcp-lease.c b/src/libsystemd-network/sd-dhcp-lease.c index 123ea68f19..6551e7c94c 100644 --- a/src/libsystemd-network/sd-dhcp-lease.c +++ b/src/libsystemd-network/sd-dhcp-lease.c @@ -538,7 +538,7 @@ int dhcp_lease_parse_options(uint8_t code, uint8_t len, const void *option, void } if (is_localhost(normalized)) { - log_debug_errno(r, "Detected 'localhost' as suggested hostname, ignoring."); + log_debug_errno(r, "Detected 'localhost' as suggested domain name, ignoring."); break; } @@ -565,7 +565,7 @@ int dhcp_lease_parse_options(uint8_t code, uint8_t len, const void *option, void } if (is_localhost(normalized)) { - log_debug_errno(r, "Detected 'localhost' as suggested hostname, ignoring."); + log_debug_errno(r, "Detected 'localhost' as suggested host name, ignoring."); return 0; }