diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-15 19:29:50 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-11-16 15:03:26 +0100 |
commit | 1a465207ab0a0b6756ab0d9305102d9159955a14 (patch) | |
tree | 0d6541f70088018a7447b051f99872fb9e535889 /src/core/job.h | |
parent | a2d72e265aaf0cceb0eb16d7f76730054e7ff439 (diff) |
core: rename "clients" field of Job structure to "bus_track"
Let's make semantics of this field more similar to the same functionality in
the Unit object, in particular as we add new functionality to it later on.
Diffstat (limited to 'src/core/job.h')
-rw-r--r-- | src/core/job.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/job.h b/src/core/job.h index 02560c41c5..ccfc7def4d 100644 --- a/src/core/job.h +++ b/src/core/job.h @@ -156,7 +156,7 @@ struct Job { * * There can be more than one client, because of job merging. */ - sd_bus_track *clients; + sd_bus_track *bus_track; char **deserialized_clients; JobResult result; |