From 42682cb273f965ebd8c312337e67460d599e540f Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Sun, 18 Sep 2011 14:10:07 +0100 Subject: [PATCH] hostnamed: Fix "SetStaticHostname" debug output Was using the wrong property (eg. not the one we just set) https://bugs.freedesktop.org/show_bug.cgi?id=40987 --- src/hostnamed.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/hostnamed.c b/src/hostnamed.c index 9e8825d..0db78c0 100644 --- a/src/hostnamed.c +++ b/src/hostnamed.c @@ -396,7 +396,7 @@ static DBusHandlerResult hostname_message_handler( return bus_send_error_reply(connection, message, NULL, r); } - log_info("Changed static host name to '%s'", strempty(data[PROP_HOSTNAME])); + log_info("Changed static host name to '%s'", strempty(data[PROP_STATIC_HOSTNAME])); changed = bus_properties_changed_new( "/org/freedesktop/hostname1", -- 1.7.6.2