summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Pitt <martinpitt@users.noreply.github.com>2017-01-31 08:26:42 +0100
committerGitHub <noreply@github.com>2017-01-31 08:26:42 +0100
commit70d940ec75143399b4065eeddcc20987cd7f4ad1 (patch)
tree6666e27ae11c51d67ea801fa40af31dd1c48c994 /src
parentc954f33233be2a3aad2d13e934316c10897d4893 (diff)
parent8146c32b9264a6915d467a5cab1a24311fbede7e (diff)
Merge pull request #5175 from keszybz/hostname-fallback
Allow distributions to override the "localhost" fallback
Diffstat (limited to 'src')
-rw-r--r--src/hostname/hostnamed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hostname/hostnamed.c b/src/hostname/hostnamed.c
index 74256e4444..4657cf8c77 100644
--- a/src/hostname/hostnamed.c
+++ b/src/hostname/hostnamed.c
@@ -283,7 +283,7 @@ static int context_update_kernel_hostname(Context *c) {
/* ... and the ultimate fallback */
else
- hn = "localhost";
+ hn = FALLBACK_HOSTNAME;
if (sethostname_idempotent(hn) < 0)
return -errno;
@@ -419,7 +419,7 @@ static int method_set_hostname(sd_bus_message *m, void *userdata, sd_bus_error *
name = c->data[PROP_STATIC_HOSTNAME];
if (isempty(name))
- name = "localhost";
+ name = FALLBACK_HOSTNAME;
if (!hostname_is_valid(name, false))
return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid hostname '%s'", name);