aboutsummaryrefslogtreecommitdiffstats
path: root/src/libskabus/skabus_pub_send_async.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-08-10 18:01:01 +0000
committerLaurent Bercot <ska@appnovation.com>2021-08-10 18:01:01 +0000
commit304b35f770b1d4599e6a76c97cb3e02b19e98445 (patch)
tree045c8e83247a9eb27aa4f45d43abba5539eddce6 /src/libskabus/skabus_pub_send_async.c
parent6b13dbadb14e21074e9a54d284b4757337c7c009 (diff)
downloadskabus-304b35f770b1d4599e6a76c97cb3e02b19e98445.tar.gz
Adapt to skalibs-2.11.0.0, the real one
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libskabus/skabus_pub_send_async.c')
-rw-r--r--src/libskabus/skabus_pub_send_async.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libskabus/skabus_pub_send_async.c b/src/libskabus/skabus_pub_send_async.c
index 1a2bb58..214f541 100644
--- a/src/libskabus/skabus_pub_send_async.c
+++ b/src/libskabus/skabus_pub_send_async.c
@@ -11,6 +11,6 @@
int skabus_pub_send_withfds_async (skabus_pub_t *a, char const *s, size_t len, int const *fds, unsigned int nfds, unsigned char const *bits, skabus_pub_send_result_t *result)
{
struct iovec v[2] = { { .iov_base = "!", .iov_len = 1 }, { .iov_base = (char *)s, .iov_len = len } } ;
- unixmessage_v_t m = { .v = v, .vlen = 2, .fds = (int *)fds, .nfds = nfds } ;
+ unixmessagev m = { .v = v, .vlen = 2, .fds = (int *)fds, .nfds = nfds } ;
return skaclient_putmsgv_and_close(&a->connection, &m, bits, &skabus_pub_send_cb, result) ;
}