Skip to content
Snippets Groups Projects
Commit 16c1f2b8 authored by Steven Murray's avatar Steven Murray
Browse files

Fixed poll bitset bug in castor::io

parent 2d2e2526
Branches
Tags
No related merge requests found
......@@ -944,7 +944,7 @@ int castor::io::connectWithTimeout(
pollfd pollFd;
pollFd.fd = smartSock.get();
pollFd.events = POLLIN & POLLOUT;
pollFd.events = POLLIN | POLLOUT;
pollFd.revents = 0;
// Wait for the connection to complete using poll() with a timeout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment