diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-08-10 18:01:01 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-08-10 18:01:01 +0000 |
commit | 304b35f770b1d4599e6a76c97cb3e02b19e98445 (patch) | |
tree | 045c8e83247a9eb27aa4f45d43abba5539eddce6 /src/libskabus/skabus_pub_sendpm_async.c | |
parent | 6b13dbadb14e21074e9a54d284b4757337c7c009 (diff) | |
download | skabus-304b35f770b1d4599e6a76c97cb3e02b19e98445.tar.xz |
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_sendpm_async.c')
-rw-r--r-- | src/libskabus/skabus_pub_sendpm_async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libskabus/skabus_pub_sendpm_async.c b/src/libskabus/skabus_pub_sendpm_async.c index d43b01f..dd7aeec 100644 --- a/src/libskabus/skabus_pub_sendpm_async.c +++ b/src/libskabus/skabus_pub_sendpm_async.c @@ -20,7 +20,7 @@ int skabus_pub_sendpm_withfds_async (skabus_pub_t *a, char const *idstr, char co { .iov_base = (char *)idstr, .iov_len = idlen+1 }, { .iov_base = (char *)s, .iov_len = len } } ; - unixmessage_v_t m = { .v = v, .vlen = 3, .fds = (int *)fds, .nfds = nfds } ; + unixmessagev m = { .v = v, .vlen = 3, .fds = (int *)fds, .nfds = nfds } ; if (idlen > SKABUS_PUB_IDSTR_SIZE) return (errno = ERANGE, 0) ; tmp[1] = (unsigned char)idlen ; return skaclient_putmsgv_and_close(&a->connection, &m, bits, &skabus_pub_send_cb, result) ; |