Skip to content

Commit c2bfca1

Browse files
committed
fix ipv6 missing copypaste
Signed-off-by: Stanislav Kirillov <staskirillof@yandex.ru>
1 parent 86061fb commit c2bfca1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

opal/mca/btl/tcp/btl_tcp_proc.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,10 @@ void mca_btl_tcp_proc_accept(mca_btl_tcp_proc_t* btl_proc, struct sockaddr* addr
857857
tmp[1], INET6_ADDRSTRLEN),
858858
(int)i, (int)btl_proc->proc_endpoint_count);
859859
continue;
860+
} else if (btl_endpoint->endpoint_state != MCA_BTL_TCP_CLOSED) {
861+
found_match = 1;
862+
match_btl_endpoint = btl_endpoint;
863+
continue;
860864
}
861865
break;
862866
#endif

0 commit comments

Comments
 (0)