diff options
Diffstat (limited to 'src/sockets.cpp')
-rw-r--r-- | src/sockets.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sockets.cpp b/src/sockets.cpp index 768104bca..7dffd743b 100644 --- a/src/sockets.cpp +++ b/src/sockets.cpp @@ -282,7 +282,7 @@ bool cidr::operator<(const cidr &other) const { if (this->addr.sa.sa_family != other.addr.sa.sa_family) return this->addr.sa.sa_family < other.addr.sa.sa_family; - + switch (this->addr.sa.sa_family) { case AF_INET: @@ -574,4 +574,3 @@ bool SocketEngine::IgnoreErrno() || GetLastError() == EINTR || GetLastError() == EINPROGRESS; } - |