]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ctdb-tcp: Check incoming queue to see if incoming connection is up
authorMartin Schwenke <martin@meltin.net>
Tue, 29 Oct 2019 04:25:26 +0000 (15:25 +1100)
committerAmitay Isaacs <amitay@samba.org>
Wed, 6 Nov 2019 01:22:30 +0000 (01:22 +0000)
This makes it consistent with the reverse case.  Also, in_fd will soon
be removed.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14175

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
ctdb/tcp/tcp_connect.c

index 6123380ca9fc490838d11fb9b4e860c8a013cca6..5bcb5216bd22e2c2df554b6f060d4a3bdc494ce5 100644 (file)
@@ -153,7 +153,7 @@ static void ctdb_node_connect_write(struct tevent_context *ev,
         * as connected, but only if the corresponding listening
         * socket is also connected
         */
-       if (tnode->in_fd != -1) {
+       if (tnode->in_queue != NULL) {
                node->ctdb->upcalls->node_connected(node);
        }
 }