Commit ad7ab013 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

I'm not even going comment on how SunOS returns this to a read(2)...

parent 13db3904
......@@ -575,6 +575,8 @@ VTCP_Check(ssize_t a)
if (errno == EAGAIN || errno == EWOULDBLOCK)
return (1);
#if (defined (__SVR4) && defined (__sun))
if (errno == ECONNREFUSED) // in r02702.vtc
return (1);
if (errno == EPROTO)
return (1);
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment