summaryrefslogtreecommitdiff
path: root/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2002-07-02 12:08:46 +0000
committerAnton Berezin <tobez@FreeBSD.org>2002-07-02 12:08:46 +0000
commit82f5ccd0240c3dfb43acf73a2646f0b284f8b8d3 (patch)
tree6fb3a77b91a4bd015001576869faad7e345f74e3 /dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm
parentwill be replaced (diff)
Update to 1.02. Remove the patch, since it (and more) was included into
the new version.
Notes
Notes: svn path=/head/; revision=62336
Diffstat (limited to '')
-rw-r--r--dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm39
1 files changed, 0 insertions, 39 deletions
diff --git a/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm b/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm
deleted file mode 100644
index 9a5d10a65c52..000000000000
--- a/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm
+++ /dev/null
@@ -1,39 +0,0 @@
-$FreeBSD$
-
---- ZoneFile.pm.orig Tue Jun 11 20:34:27 2002
-+++ ZoneFile.pm Tue Jun 11 20:35:23 2002
-@@ -129,23 +129,23 @@
- elsif ($text =~ # SOA
- s/
- \A(|\*|\s*@|\.|([-\w\d]+(\.[-\w\d]+)*\.?))
-- \s+ ((IN|HESIOD|CHAOS) \s+)?
-+ \s+ (?:([\d]+)\s+)? ((IN|HESIOD|CHAOS) \s+)?
- (SOA) \s+ ([-\w\d]+(\.[-\w\d]+)*\.)
- \s+ ([-\w\d]+(\.[-\w\d]+)*\.) \s* \(
- \s* (\d+) \s+ (\d+) \s+ (\d+) \s+ (\d+) \s+ (\d+) \s+ \) \s*$
- //mxi)
- {
- my $name = $1;
-- my $class = $5 || 'IN';
-- my $type = $6;
-- my $host = $7;
-- my $admin = $9;
-- my $d1 = $11;
-- my $d2 = $12;
-- my $d3 = $13;
-- my $d4 = $14;
-- my $d5 = $15;
-- my $ttl = $d5;
-+ my $class = $6 || 'IN';
-+ my $type = $7;
-+ my $host = $8;
-+ my $admin = $10;
-+ my $d1 = $12;
-+ my $d2 = $13;
-+ my $d3 = $14;
-+ my $d4 = $15;
-+ my $d5 = $16;
-+ my $ttl = $4 || $d5;
-
- $SoaTTL = $ttl;
-