X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fhostname-setup.c;h=f81103a8103eb48aa44c1f1c14c97937392d25df;hb=23bbb0de4e3f85d9704a5c12a5afa2dfa0159e41;hp=7894f8a5f2e5f35528d8512e5359f73a778c375e;hpb=46a2911bf2780f616396df5671dd901cc7cb54fd;p=elogind.git diff --git a/src/core/hostname-setup.c b/src/core/hostname-setup.c index 7894f8a5f..f81103a81 100644 --- a/src/core/hostname-setup.c +++ b/src/core/hostname-setup.c @@ -29,6 +29,7 @@ #include "macro.h" #include "util.h" #include "log.h" +#include "fileio.h" static int read_and_strip_hostname(const char *path, char **hn) { char *s; @@ -41,7 +42,7 @@ static int read_and_strip_hostname(const char *path, char **hn) { if (r < 0) return r; - hostname_cleanup(s); + hostname_cleanup(s, false); if (isempty(s)) { free(s); @@ -63,7 +64,7 @@ int hostname_setup(void) { if (r == -ENOENT) enoent = true; else - log_warning("Failed to read configured hostname: %s", strerror(-r)); + log_warning_errno(r, "Failed to read configured hostname: %m"); hn = NULL; } else @@ -81,7 +82,7 @@ int hostname_setup(void) { hn = "localhost"; } - if (sethostname(hn, strlen(hn)) < 0) { + if (sethostname_idempotent(hn) < 0) { log_warning("Failed to set hostname to <%s>: %m", hn); return -errno; }