mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 10:57:01 +00:00
make sure socket is of the right domain
This commit is contained in:
parent
8c7ebc02a0
commit
dd19d73db4
2
netio.c
2
netio.c
@ -61,7 +61,7 @@ static void connect_try_next(struct dropbear_progress_connection *c) {
|
|||||||
{
|
{
|
||||||
dropbear_assert(c->sock == -1);
|
dropbear_assert(c->sock == -1);
|
||||||
|
|
||||||
c->sock = socket(c->res_iter->ai_family, c->res_iter->ai_socktype, c->res_iter->ai_protocol);
|
c->sock = socket(r->ai_family, r->ai_socktype, r->ai_protocol);
|
||||||
if (c->sock < 0) {
|
if (c->sock < 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user