From: Lennart Poettering Date: Thu, 27 Aug 2015 17:57:11 +0000 (+0200) Subject: dhcp: say domain name, when we mean domain name X-Git-Tag: v226~89^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e37d2c941f6493c2e3df1baead7f5565a256f4a2;p=thirdparty%2Fsystemd.git dhcp: say domain name, when we mean domain name --- diff --git a/src/libsystemd-network/sd-dhcp-lease.c b/src/libsystemd-network/sd-dhcp-lease.c index 123ea68f19b..6551e7c94c4 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; }