diff options
author | Doug Barton <dougb@FreeBSD.org> | 2002-02-06 07:59:56 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2002-02-06 07:59:56 +0000 |
commit | e4e46ecd08e3cdd98be6e9943cbda26e9d4cfd8a (patch) | |
tree | 172bb9eeb549563fb2535bc68c6f8cc25e747ad8 /net/p5-Net-DNS/files | |
parent | Add java category. (diff) |
* Assume maintainership by agreement.
* Update to 0.14, which has only two changes:
- Fix the bug which we fixed with patch-aa
- Fix the "defined @array" line that trips
up perl 5.6.x
Diffstat (limited to 'net/p5-Net-DNS/files')
-rw-r--r-- | net/p5-Net-DNS/files/patch-aa | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/net/p5-Net-DNS/files/patch-aa b/net/p5-Net-DNS/files/patch-aa deleted file mode 100644 index 8fba787cc0bf..000000000000 --- a/net/p5-Net-DNS/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ ---- lib/Net/DNS/Resolver.pm.bak Thu Oct 2 09:32:14 1997 -+++ lib/Net/DNS/Resolver.pm Fri Dec 21 00:20:11 2001 -@@ -244,7 +244,10 @@ - } - - sub nextid { -- return $global{"id"}++; -+ if (++$global{"id"} > 65535) { -+ $global{"id"} = 0; -+ } -+ return $global{"id"}; - } - - =head2 searchlist |