summaryrefslogtreecommitdiff
path: root/src/core/dbus-manager.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-11-13 11:59:06 +0100
committerLennart Poettering <lennart@poettering.net>2018-11-13 11:59:06 +0100
commit209de5256b7ba8600c3e73a85a43b86708998d65 (patch)
tree3dc3a23f67dbee734081ceb391432e08f7e0deb7 /src/core/dbus-manager.c
parent8724defeae4c6da9e5816e88dec4138c5f909932 (diff)
downloadsystemd-209de5256b7ba8600c3e73a85a43b86708998d65.tar.gz
core: rename queued_message → pending_reload_message
This field is only used for pending Reload() replies, hence let's rename it to be more descriptive and precise. No change in behaviour.
Diffstat (limited to 'src/core/dbus-manager.c')
-rw-r--r--src/core/dbus-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
index 2e38088d0f..8da07adfe7 100644
--- a/src/core/dbus-manager.c
+++ b/src/core/dbus-manager.c
@@ -1354,8 +1354,8 @@ static int method_reload(sd_bus_message *message, void *userdata, sd_bus_error *
* is finished. That way the caller knows when the reload
* finished. */
- assert(!m->queued_message);
- r = sd_bus_message_new_method_return(message, &m->queued_message);
+ assert(!m->pending_reload_message);
+ r = sd_bus_message_new_method_return(message, &m->pending_reload_message);
if (r < 0)
return r;