From: espie Date: Fri, 19 Jan 2018 11:34:41 +0000 (+0000) Subject: display the actual redirect message, as that's informative. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=800748cc580dccb8d69ae491dd691a4767e177ea;p=openbsd display the actual redirect message, as that's informative. won't flood the terminal, since the first redirect changes the host discussed with sthen --- diff --git a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm index 02e24ade348..6c380e32885 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackageRepository.pm,v 1.149 2018/01/17 13:25:36 espie Exp $ +# $OpenBSD: PackageRepository.pm,v 1.150 2018/01/19 11:34:41 espie Exp $ # # Copyright (c) 2003-2010 Marc Espie # @@ -294,6 +294,7 @@ sub parse_problems $self->{last_error} = 0; while(<$fh>) { if (m/^Redirected to https?\:\/\/([^\/]*)/) { + $self->{state}->say("#1", $_); $self->{host} = $1; $baseurl = $self->url; next;