summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2011-08-03 22:32:00 +0000
committerPeter Volkov <pva@gentoo.org>2011-08-03 22:32:00 +0000
commit6c2642caabca483a807ed19f5f22a418382198e8 (patch)
tree98cf115bdca281d5959bf1c088a5781743958c4d /net-analyzer/httping/files
parentVersion bump, security bug #377623. (diff)
downloadhistorical-6c2642caabca483a807ed19f5f22a418382198e8.tar.gz
historical-6c2642caabca483a807ed19f5f22a418382198e8.tar.bz2
historical-6c2642caabca483a807ed19f5f22a418382198e8.zip
Version bump.
Package-Manager: portage-2.1.10.10/cvs/Linux x86_64
Diffstat (limited to 'net-analyzer/httping/files')
-rw-r--r--net-analyzer/httping/files/httping-1.5.1-bind.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/net-analyzer/httping/files/httping-1.5.1-bind.patch b/net-analyzer/httping/files/httping-1.5.1-bind.patch
deleted file mode 100644
index f7f7cc73f09d..000000000000
--- a/net-analyzer/httping/files/httping-1.5.1-bind.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Patch from upstream developer Folkert van Heusden, to fix bind (-y) issue.
-https://bugs.gentoo.org/show_bug.cgi?id=367537
-
---- httping-1.5.1/main.c 2011-07-27 23:33:34.000000000 +0400
-+++ httping-1.5.1/main.c 2011-08-01 09:30:11.000000000 +0400
-@@ -350,6 +350,7 @@
- {
- bind_to = (struct sockaddr_in *)&bind_to_6;
- memset(&bind_to_6, 0x00, sizeof(bind_to_6));
-+ bind_to_6.sin6_family = AF_INET6;
-
- if (inet_pton(AF_INET6, optarg, &(bind_to_6.sin6_addr)) != 1)
- {
-@@ -360,6 +361,7 @@
- {
- bind_to = (struct sockaddr_in *)&bind_to_4;
- memset(&bind_to_4, 0x00, sizeof(bind_to_4));
-+ bind_to_4.sin_family = AF_INET;
-
- if (inet_pton(AF_INET, optarg, &(bind_to_4.sin_addr)) != 1)
- {