summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-01-16 22:14:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-01-16 22:14:37 +0000
commit67a83c1b3465c44b249eaa44fdc492952e59b31f (patch)
tree7240899b4d2b76095abdb09dcccd657a6177e9b5 /perl
parent1e8d094274139238fb710451e069ce42317e55e4 (diff)
downloadcurl-67a83c1b3465c44b249eaa44fdc492952e59b31f.tar.gz
David Shaw finally removed all traces of Gopher and we are now officially
not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time.
Diffstat (limited to 'perl')
-rw-r--r--perl/contrib/checklinks.pl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/contrib/checklinks.pl.in b/perl/contrib/checklinks.pl.in
index 17032b36a..6be659faa 100644
--- a/perl/contrib/checklinks.pl.in
+++ b/perl/contrib/checklinks.pl.in
@@ -269,7 +269,7 @@ for(@links) {
if($url =~ /^([^:]+):/) {
$prot = $1;
-# if($prot !~ /(http|ftp|gopher)/i) {
+# if($prot !~ /(http|ftp)/i) {
if($prot !~ /http/i) {
# this is an unsupported protocol, we ignore this
next linkloop;