diff options
author | Daniel Mack <zonque@gmail.com> | 2013-11-29 15:36:37 +0100 |
---|---|---|
committer | Daniel Mack <zonque@gmail.com> | 2013-11-29 15:36:40 +0100 |
commit | d21a7bb1a91ca4654287a69d0443629198e42e1b (patch) | |
tree | eb050b2e76e1a37109dc864f94ca1f6e1c99492a /src/libsystemd-bus/bus-kernel.c | |
parent | 71008e18a0bf9e9b96348fe2fb751aea23397186 (diff) |
libsystemd-bus: catch up with latest kdbus changes
kdbus_cmd_hello now has a new uint64_t flags field for the requested
attachments. Follow that change in libsystemd-bus.
Diffstat (limited to 'src/libsystemd-bus/bus-kernel.c')
-rw-r--r-- | src/libsystemd-bus/bus-kernel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd-bus/bus-kernel.c b/src/libsystemd-bus/bus-kernel.c index 08f1851b96..959392a62d 100644 --- a/src/libsystemd-bus/bus-kernel.c +++ b/src/libsystemd-bus/bus-kernel.c @@ -326,6 +326,7 @@ int bus_kernel_take_fd(sd_bus *b) { zero(hello); hello.size = sizeof(hello); hello.conn_flags = b->hello_flags; + hello.attach_flags = b->attach_flags; hello.pool_size = KDBUS_POOL_SIZE; r = ioctl(b->input_fd, KDBUS_CMD_HELLO, &hello); |