summaryrefslogtreecommitdiff
path: root/net/tor/patches
diff options
context:
space:
mode:
authorobache <obache>2009-02-15 07:59:02 +0000
committerobache <obache>2009-02-15 07:59:02 +0000
commit97878be898eb1d14c0b205a0fa3d83b19757d92c (patch)
treee22f54df77e558b72df561c124d142604ebee2b8 /net/tor/patches
parent2e36017e405dca0626a0eb7255db41545714e684 (diff)
downloadpkgsrc-97878be898eb1d14c0b205a0fa3d83b19757d92c.tar.gz
Update tor to 0.2.0.34.
Patch provided by Christian Sturm and back to maintainer. Changes in version 0.2.0.34 - 2009-02-08 o Security fixes: - Fix an infinite-loop bug on handling corrupt votes under certain circumstances. Bugfix on 0.2.0.8-alpha. - Fix a temporary DoS vulnerability that could be performed by a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark. - Avoid a potential crash on exit nodes when processing malformed input. Remote DoS opportunity. Bugfix on 0.2.0.33. - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid. Spec conformance issue. Bugfix on Tor 0.0.2pre27. o Minor bugfixes: - Fix compilation on systems where time_t is a 64-bit integer. Patch from Matthias Drochner. - Don't consider expiring already-closed client connections. Fixes bug 893. Bugfix on 0.0.2pre20.
Diffstat (limited to 'net/tor/patches')
-rw-r--r--net/tor/patches/patch-ac13
1 files changed, 0 insertions, 13 deletions
diff --git a/net/tor/patches/patch-ac b/net/tor/patches/patch-ac
deleted file mode 100644
index 776b48264fa..00000000000
--- a/net/tor/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.6 2009/01/22 12:46:51 drochner Exp $
-
---- ./src/common/torint.h.orig 2009-01-22 12:02:50.000000000 +0100
-+++ ./src/common/torint.h
-@@ -290,6 +290,8 @@ typedef uint32_t uintptr_t;
- #define TIME_MAX ((time_t)INT_MAX)
- #elif (SIZEOF_TIME_T == SIZEOF_LONG)
- #define TIME_MAX ((time_t)LONG_MAX)
-+#elif (SIZEOF_TIME_T == 8)
-+#define TIME_MAX ((time_t)INT64_MAX)
- #else
- #error "Can't define (signed) TIME_MAX"
- #endif