summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-firewall/iptables/files/1.2.11-files/round-robin.patch')
-rw-r--r--net-firewall/iptables/files/1.2.11-files/round-robin.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/net-firewall/iptables/files/1.2.11-files/round-robin.patch b/net-firewall/iptables/files/1.2.11-files/round-robin.patch
deleted file mode 100644
index fcc339965425..000000000000
--- a/net-firewall/iptables/files/1.2.11-files/round-robin.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-RCS file: /data/cvspublic/iptables/iptables.c,v
-retrieving revision 1.68
-retrieving revision 1.70
---- iptables/iptables.c 2004/05/26 16:04:48 1.68
-+++ iptables/iptables.c 2004/08/03 22:38:39 1.70
-@@ -551,7 +551,7 @@
-
- while (host->h_addr_list[*naddr] != (char *) NULL)
- (*naddr)++;
-- addr = fw_calloc(*naddr, sizeof(struct in_addr));
-+ addr = fw_calloc(*naddr, sizeof(struct in_addr) * *naddr);
- for (i = 0; i < *naddr; i++)
- inaddrcpy(&(addr[i]),
- (struct in_addr *) host->h_addr_list[i]);
-@@ -2339,11 +2339,8 @@
- e = NULL;
- }
-
-- for (c = 0; c < nsaddrs; c++)
-- free(&saddrs[c]);
--
-- for (c = 0; c < ndaddrs; c++)
-- free(&daddrs[c]);
-+ free(saddrs);
-+ free(daddrs);
-
- if (opts != original_opts) {
- free(opts);