diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 8646d4ac4..72b84d3aa 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -512,7 +512,7 @@ sub selectSupplMedia { } else { my $url; local $global_ftp_prefix; - if ($suppl_method eq 'ftp') { #- mirrors are ftp only (currently) + if ($suppl_method eq 'ftp') { $url = $o->askSupplMirror(N("URL of the mirror?")) or return 'error'; $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)! and $global_ftp_prefix = [ $3, $4, $1, $2 ]; #- for getFile |