summaryrefslogtreecommitdiffstats
path: root/util/network/nonblock.cpp
diff options
context:
space:
mode:
authoryazevnul <[email protected]>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/network/nonblock.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/network/nonblock.cpp')
-rw-r--r--util/network/nonblock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/network/nonblock.cpp b/util/network/nonblock.cpp
index e515c27cc51..dcc7360e622 100644
--- a/util/network/nonblock.cpp
+++ b/util/network/nonblock.cpp
@@ -17,7 +17,7 @@
namespace {
struct TFeatureCheck {
inline TFeatureCheck()
- : Accept4(nullptr)
+ : Accept4(nullptr)
, HaveSockNonBlock(false)
{
#if defined(_unix_) && defined(SOCK_NONBLOCK)
@@ -32,10 +32,10 @@ namespace {
#endif
if (Accept4) {
- Accept4(-1, nullptr, nullptr, SOCK_NONBLOCK);
+ Accept4(-1, nullptr, nullptr, SOCK_NONBLOCK);
if (errno == ENOSYS) {
- Accept4 = nullptr;
+ Accept4 = nullptr;
}
}
}