Message ID | a6d475147682de1fe3b14eb325f4247e013e8440.1619190878.git.sbrivio@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Support for AF_UNIX -netdev socket and a small fix | expand |
diff --git a/net/socket.c b/net/socket.c index aadd11dae2b3..d3293ac12e82 100644 --- a/net/socket.c +++ b/net/socket.c @@ -644,8 +644,7 @@ static int net_socket_connect_init(NetClientState *peer, if (errno == EINTR || errno == EWOULDBLOCK) { /* continue */ } else if (errno == EINPROGRESS || - errno == EALREADY || - errno == EINVAL) { + errno == EALREADY) { break; } else { error_setg_errno(errp, errno, "can't connect socket");
Other errors are treated as failure by net_socket_connect_init(), but if connect() returns EINVAL, we'll fail silently. Remove the related exception. Signed-off-by: Stefano Brivio <sbrivio@redhat.com> --- net/socket.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)