mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Fixed "unused parameter cloexec" warnings on windows
This commit is contained in:
parent
bcc39c4666
commit
48a4ef3f6a
@ -1092,6 +1092,8 @@ tor_open_socket_with_extensions(int domain, int type, int protocol,
|
||||
return TOR_INVALID_SOCKET;
|
||||
}
|
||||
}
|
||||
#else
|
||||
(void)cloexec;
|
||||
#endif
|
||||
|
||||
if (nonblock) {
|
||||
@ -1162,6 +1164,8 @@ tor_accept_socket_with_extensions(tor_socket_t sockfd, struct sockaddr *addr,
|
||||
return TOR_INVALID_SOCKET;
|
||||
}
|
||||
}
|
||||
#else
|
||||
(void)cloexec;
|
||||
#endif
|
||||
|
||||
if (nonblock) {
|
||||
|
Loading…
Reference in New Issue
Block a user