diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-04-29 19:02:08 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-04-29 19:02:08 +0200 |
commit | 8f88ecf6232fe6c46eecafad7c421096bb29b617 (patch) | |
tree | ca4bdc49aaf4249e7cdf2e8b866a4e0d2d21d498 /src/core/manager.h | |
parent | 9030ca462bd13cd6536299814e4a71d5c5e85be9 (diff) |
core: for queued reload message there is no need to store the bus explicitly
After all it can be derived from the message directly, and already is.
Diffstat (limited to 'src/core/manager.h')
-rw-r--r-- | src/core/manager.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/manager.h b/src/core/manager.h index a1caab4d4e..a9834a9def 100644 --- a/src/core/manager.h +++ b/src/core/manager.h @@ -199,11 +199,9 @@ struct Manager { sd_bus_track *subscribed; char **deserialized_subscribed; - sd_bus_message *queued_message; /* This is used during reloading: - * before the reload we queue the - * reply message here, and - * afterwards we send it */ - sd_bus *queued_message_bus; /* The connection to send the queued message on */ + /* This is used during reloading: before the reload we queue + * the reply message here, and afterwards we send it */ + sd_bus_message *queued_message; Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */ |