hostname-setup: don't pass "true" to a flags parameter

This commit is contained in:
Lennart Poettering
2023-07-05 18:02:52 +02:00
committed by Mike Yuan
parent 3121374ca4
commit 983d621e11

View File

@@ -150,7 +150,7 @@ int hostname_setup(bool really) {
if (r < 0)
log_warning_errno(r, "Failed to retrieve system hostname from kernel command line, ignoring: %m");
else if (r > 0) {
if (hostname_is_valid(b, true)) {
if (hostname_is_valid(b, VALID_HOSTNAME_TRAILING_DOT)) {
hn = b;
source = HOSTNAME_TRANSIENT;
} else {