aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-01-18 13:14:44 -0500
committerNick Mathewson <nickm@torproject.org>2012-01-18 13:14:44 -0500
commitee717f35c44fa0ec3fc37ca8865a80e321105c33 (patch)
tree0afe399d1037f6f7b92fa905592685c682155b53 /src/tools
parent1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4 (diff)
downloadtor-ee717f35c44fa0ec3fc37ca8865a80e321105c33.tar
tor-ee717f35c44fa0ec3fc37ca8865a80e321105c33.tar.gz
Use tor_socket_t, not unsigned, in tor-fw-helper-natmp.c
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tor-fw-helper/tor-fw-helper-natpmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c
index 2380b141d..a3a52d103 100644
--- a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c
+++ b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c
@@ -87,7 +87,7 @@ tor_natpmp_cleanup(tor_fw_options_t *tor_fw_options, void *backend_state)
/** Use select() to wait until we can read on fd. */
static int
-wait_until_fd_readable(unsigned int fd, struct timeval *timeout)
+wait_until_fd_readable(tor_socket_t fd, struct timeval *timeout)
{
int r;
fd_set fds;