summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authoraligus <[email protected]>2022-02-10 16:49:23 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:23 +0300
commit3f79772915172a9f5407c1a815806a8c8ba67c60 (patch)
tree79161f79bbef65a0b0573ccc11357304e5f93940 /util
parentd8471797044beeb73c43091394121ac38ffe75ed (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util')
-rw-r--r--util/network/socket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/network/socket.cpp b/util/network/socket.cpp
index 4f6e8043462..0e711371e6a 100644
--- a/util/network/socket.cpp
+++ b/util/network/socket.cpp
@@ -272,7 +272,7 @@ void SetSocketTimeout(SOCKET s, long timeout) {
void SetSocketTimeout(SOCKET s, long sec, long msec) {
#ifdef SO_SNDTIMEO
#ifdef _darwin_
- const timeval timeout = {sec, (__darwin_suseconds_t)msec * 1000};
+ const timeval timeout = {sec, (__darwin_suseconds_t)msec * 1000};
#elif defined(_unix_)
const timeval timeout = {sec, msec * 1000};
#else