diff options
| author | aligus <[email protected]> | 2022-02-10 16:49:23 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:23 +0300 |
| commit | 3f79772915172a9f5407c1a815806a8c8ba67c60 (patch) | |
| tree | 79161f79bbef65a0b0573ccc11357304e5f93940 /util | |
| parent | d8471797044beeb73c43091394121ac38ffe75ed (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util')
| -rw-r--r-- | util/network/socket.cpp | 2 |
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 |
