From b860471279dfd3ec4dcdba9c02b7886869459ec8 Mon Sep 17 00:00:00 2001 From: David Härdeman Date: Thu, 11 Jun 2020 23:25:38 +0200 Subject: Oops....fixup connect_any callback throughout --- utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils.c') diff --git a/utils.c b/utils.c index 05fe124..1fa8621 100644 --- a/utils.c +++ b/utils.c @@ -202,7 +202,7 @@ void connection_set_remote(struct cfg *cfg, struct connection *conn, struct sockaddr_in46 *remote) { conn->remote = *remote; - sockaddr_to_str(&conn->remote, &conn->remotestr, sizeof(conn->remotestr)); + sockaddr_to_str(&conn->remote, conn->remotestr, sizeof(conn->remotestr)); } static void connect_next(struct cfg *cfg, struct uring_task *task, struct connection *conn); @@ -273,7 +273,7 @@ again: void connect_any(struct cfg *cfg, struct uring_task *task, struct list_head *addrs, struct connection *conn, - void (*callback)(struct cfg *, struct connection *, int res)) + void (*callback)(struct cfg *, struct connection *, bool res)) { if (!cfg || !task || !addrs || !conn || !callback) { fprintf(stderr, "%s: invalid arguments\n", __func__); -- cgit v1.2.3