summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>1999-08-11 13:13:13 +0000
committerivan <ivan>1999-08-11 13:13:13 +0000
commit48ecf4bec10d12ad53519406d8cf8b358aadd8cc (patch)
treee2bdb49976e4478e3b21d180da647deef33fe075
parent8ba31246d8226ff4d71d0ddabcb31d984e7a1548 (diff)
no longer needed, Net::Whois v1.001 released
-rw-r--r--htdocs/docs/Net-Whois-0.23-ivan1.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/htdocs/docs/Net-Whois-0.23-ivan1.patch b/htdocs/docs/Net-Whois-0.23-ivan1.patch
deleted file mode 100644
index 73de0de11..000000000
--- a/htdocs/docs/Net-Whois-0.23-ivan1.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-# This is a patch for Net-Whois-0.23/Whois.pm to update it to Net-Whois-0.23-ivan1/Whois.pm.
-# It was generated by makepatch 1.93 (2.0BETA) on Tue Aug 3 02:40:13 1999.
-#
-# To apply this patch, chdir to source directory Net-Whois-0.23/Whois.pm and enter
-#
-# patch -p1 -N < <this-file>
-
-exit
-# End of preamble.
-
-# Patch input follows.
-__DATA__
-Index: Net-Whois-0.23-ivan1/Whois.pm
-Prereq: 1.13
-####### =>
-*** Net-Whois-0.23/Whois.pm Fri Jan 29 22:00:46 1999
---- Net-Whois-0.23-ivan1/Whois.pm Tue Aug 3 02:33:57 1999
-***************
-*** 216,224 ****
- my %info;
-
- do {
-! $t = shift @text;
-! } while (@text && ($t eq '' || $t =~ /^registrant:/i));
-! @info{'NAME', 'TAG'} = ($t =~ /^(.*)\s+\((\S+)\)$/)
- or return;
-
- @t = ();
---- 216,225 ----
- my %info;
-
- do {
-! $t = shift @text;
-! } while ( @text && ($t !~ /^registrant:/i ) );
-! $t = shift @text or return;
-! @info{'NAME', 'TAG'} = ( $t =~ /^(.*)\s+\((\S+)\)$/)
- or return;
-
- @t = ();
-
-
-End of Patch.