diff options
| author | fcicq <[email protected]> | 2013-07-17 16:51:40 +0800 |
|---|---|---|
| committer | fcicq <[email protected]> | 2013-07-17 16:51:40 +0800 |
| commit | 98148a713e6e671f1d993ce4dc7aa4654b4beaff (patch) | |
| tree | 151b91d6e291ea94ffb9219dc28892ca6e4eeb45 /src/netbase.cpp | |
| parent | Ignore SIGPIPE signal on Solaris (diff) | |
| download | discoin-98148a713e6e671f1d993ce4dc7aa4654b4beaff.tar.xz discoin-98148a713e6e671f1d993ce4dc7aa4654b4beaff.zip | |
Fix fcntl include in net.cpp & netbase.cpp
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 08d133740..348771375 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -9,7 +9,7 @@ #include "hash.h" #ifndef WIN32 -#include <sys/fcntl.h> +#include <fcntl.h> #endif #include <boost/algorithm/string/case_conv.hpp> // for to_lower() |