Hi,

in pth_high.c, function pth_connect_ev, line 499, there is

>> if (rv == -1 && errno == EINPROGRESS
>> && fdmode != PTH_FDMODE_NONBLOCK)

while PTH_FDMODE_NONBLOCK has been set earlier.
Maybe there's something I don't get, but I had a problem with
pth_connect_ev retuning an error, and when I changed the test to

>>    if (rv == -1 && errno == EINPROGRESS)

it started to work.

What do you think ?
Stefan

Reply via email to