Skip to content

Commit

Permalink
Include Posix-compliant header for fd_set.
Browse files Browse the repository at this point in the history
Similar to f3ae3c4, add Posix-compliant header to make FreeBSD happy.

Suggested by ucando.
  • Loading branch information
dwsteele committed Jan 29, 2019
1 parent b5a103f commit 8634eb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion doc/xml/release.xml
Expand Up @@ -56,7 +56,7 @@
<release-item-ideator id="ucando"/>
</release-item-contributor-list>

<p>Include Posix-compliant header for <code>strcasecmp()</code>.</p>
<p>Include Posix-compliant header for <code>strcasecmp()</code> and <code>fd_set</code>.</p>
</release-item>
</release-improvement-list>

Expand Down
1 change: 1 addition & 0 deletions src/common/io/handleRead.c
@@ -1,6 +1,7 @@
/***********************************************************************************************************************************
Handle IO Read
***********************************************************************************************************************************/
#include <sys/select.h>
#include <unistd.h>

#include "common/debug.h"
Expand Down
1 change: 1 addition & 0 deletions src/common/io/tls/client.c
Expand Up @@ -6,6 +6,7 @@ TLS Client
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <unistd.h>

Expand Down

0 comments on commit 8634eb8

Please sign in to comment.