summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-01-24 13:06:55 +0000
committerAnthony G. Basile <blueness@gentoo.org>2012-01-24 13:06:55 +0000
commit76b97fbf92cec8c44356782ef38a8b7b8c6dbec7 (patch)
tree4882014e97aedd49eb75794dfea308223673dc3a /net-misc/tor/files
parentx86 stable per bug 399365 (diff)
downloadgentoo-2-76b97fbf92cec8c44356782ef38a8b7b8c6dbec7.tar.gz
gentoo-2-76b97fbf92cec8c44356782ef38a8b7b8c6dbec7.tar.bz2
gentoo-2-76b97fbf92cec8c44356782ef38a8b7b8c6dbec7.zip
Version bump alpha
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/tor/files')
-rw-r--r--net-misc/tor/files/tor-0.2.3.11_alpha-fix-tor-fw-helper-natpmp.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/net-misc/tor/files/tor-0.2.3.11_alpha-fix-tor-fw-helper-natpmp.patch b/net-misc/tor/files/tor-0.2.3.11_alpha-fix-tor-fw-helper-natpmp.patch
new file mode 100644
index 000000000000..ab4fccb68906
--- /dev/null
+++ b/net-misc/tor/files/tor-0.2.3.11_alpha-fix-tor-fw-helper-natpmp.patch
@@ -0,0 +1,17 @@
+Fixes a regression in tor-fw-helper-natpmp.c where
+a filedescriptor is incorrectly type tor_socket_t.
+
+See https://trac.torproject.org/projects/tor/ticket/4955
+
+diff -Naur tor-0.2.3.11-alpha.orig/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c tor-0.2.3.11-alpha/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c
+--- tor-0.2.3.11-alpha.orig/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c 2012-01-21 22:07:30.000000000 -0500
++++ tor-0.2.3.11-alpha/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c 2012-01-24 07:57:42.000000000 -0500
+@@ -87,7 +87,7 @@
+
+ /** Use select() to wait until we can read on fd. */
+ static int
+-wait_until_fd_readable(tor_socket_t fd, struct timeval *timeout)
++wait_until_fd_readable(unsigned int fd, struct timeval *timeout)
+ {
+ int r;
+ fd_set fds;