diff options
| author | aligus <[email protected]> | 2022-02-10 16:49:24 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:24 +0300 |
| commit | c2bb7445128368226bd179d54d6a238c9fd3065e (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util | |
| parent | 3f79772915172a9f5407c1a815806a8c8ba67c60 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 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 0e711371e6a..4f6e8043462 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 |
