mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
Upstream release notes: https://pocoproject.org/blog/?p=1037 PR: 217714 Submitted by: henry.hu.sh@gmail.com (new maintainer) Approved by: swills (mentor, implicit)
11 lines
282 B
C++
11 lines
282 B
C++
--- Net/src/SocketImpl.cpp.orig 2017-03-06 05:45:17 UTC
|
|
+++ Net/src/SocketImpl.cpp
|
|
@@ -473,7 +473,7 @@ bool SocketImpl::poll(const Poco::Timesp
|
|
}
|
|
}
|
|
while (rc < 0 && lastError() == POCO_EINTR);
|
|
- if (rc < 0) error(errorCode);
|
|
+ if (rc < 0) error();
|
|
return rc > 0;
|
|
|
|
#else
|