Skip to content
Snippets Groups Projects
Commit a88f5277 authored by Moe Jette's avatar Moe Jette
Browse files
parent 4b72d5b7
No related branches found
No related tags found
No related merge requests found
......@@ -604,10 +604,10 @@ extern int _slurm_connect (int __fd, struct sockaddr const * __addr,
debug2("_slurm_connect poll timeout: %m");
return -1;
} else {
/* poll saw an event on the socket */
/* We need to check if the connection succeeded by
using getsockopt. The revent is not necessarily
POLLERR when the connection fails! */
/* poll saw some event on the socket
* We need to check if the connection succeeded by
* using getsockopt. The revent is not necessarily
* POLLERR when the connection fails! */
len = sizeof(err);
if (getsockopt(__fd, SOL_SOCKET, SO_ERROR,
&err, &len) < 0)
......@@ -618,9 +618,9 @@ done:
fcntl(__fd, F_SETFL, flags);
if (err) {
errno = err;
slurm_seterrno(err);
debug2("_slurm_connect failed: %m");
errno = err;
slurm_seterrno(err);
return -1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment