diff options
author | Kay Sievers <kay@vrfy.org> | 2014-04-22 22:52:19 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-04-22 22:52:19 +0200 |
commit | 26e376bfe34ba6caa04723b9200e9deace8e6c9f (patch) | |
tree | 1ea2942702a1e2f55888346dcc68dfe9914b5faf /src/libsystemd/sd-bus/bus-control.h | |
parent | cc544d5fb4c85e5645e3db7fbb34474674a3ac98 (diff) |
bus: remove "on behalf" kdbus logic (ABI break)
Diffstat (limited to 'src/libsystemd/sd-bus/bus-control.h')
-rw-r--r-- | src/libsystemd/sd-bus/bus-control.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd/sd-bus/bus-control.h b/src/libsystemd/sd-bus/bus-control.h index b610bef842..420e091b2e 100644 --- a/src/libsystemd/sd-bus/bus-control.h +++ b/src/libsystemd/sd-bus/bus-control.h @@ -26,5 +26,5 @@ int bus_add_match_internal(sd_bus *bus, const char *match, struct bus_match_component *components, unsigned n_components, uint64_t cookie); int bus_remove_match_internal(sd_bus *bus, const char *match, uint64_t cookie); -int bus_add_match_internal_kernel(sd_bus *bus, uint64_t id, struct bus_match_component *components, unsigned n_components, uint64_t cookie); -int bus_remove_match_internal_kernel(sd_bus *bus, uint64_t id, uint64_t cookie); +int bus_add_match_internal_kernel(sd_bus *bus, struct bus_match_component *components, unsigned n_components, uint64_t cookie); +int bus_remove_match_internal_kernel(sd_bus *bus, uint64_t cookie); |