summaryrefslogtreecommitdiffstats
path: root/util/network/nonblock.cpp
diff options
context:
space:
mode:
authoryazevnul <[email protected]>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/network/nonblock.cpp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 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 dcc7360e622..e515c27cc51 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;
}
}
}