Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
274f9b62
Commit
274f9b62
authored
Aug 22, 2016
by
Steven Murray
Browse files
Fixed poll bitset bug in castor::io
parent
f3ef23e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tapeserver/castor/io/io.cpp
View file @
274f9b62
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment