fix typo :)
This commit is contained in:
parent
9e4c836f08
commit
10acef33db
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ void adns__tcp_tryconnect(adns_state ads, struct timeval now)
|
|||
tcp_connected(ads, now);
|
||||
return;
|
||||
}
|
||||
if((os_sock_errno == OS_SOCK_EWOULDBLOCK) | (os_sock_errno == OS_SOCK_EINPROGRESS) )
|
||||
if((os_sock_errno == OS_SOCK_EWOULDBLOCK) || (os_sock_errno == OS_SOCK_EINPROGRESS) )
|
||||
{
|
||||
ads->tcptimeout = now;
|
||||
/* EVNT addsock write */
|
||||
|
|
Reference in a new issue