diff --git a/netcfg.changes b/netcfg.changes index 3d27035..203c05a 100644 --- a/netcfg.changes +++ b/netcfg.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Feb 18 07:40:58 UTC 2021 - Johannes Segitz + +- services-create.pl: Switch to https (bsc#1182395) + ------------------------------------------------------------------- Mon May 18 07:58:08 UTC 2020 - Marketa Calabkova diff --git a/netcfg.spec b/netcfg.spec index 6bba96e..cc98188 100644 --- a/netcfg.spec +++ b/netcfg.spec @@ -1,7 +1,7 @@ # # spec file for package netcfg # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/services-create.pl b/services-create.pl index 4cb70af..66ef8cd 100644 --- a/services-create.pl +++ b/services-create.pl @@ -6,7 +6,7 @@ use XML::LibXML::Reader; binmode( STDOUT, 'utf8:' ); -my $portsurl = 'http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'; +my $portsurl = 'https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'; my $servicesfile = 'services.new'; my $reader = XML::LibXML::Reader->new(location => $portsurl) or die "cannot read $portsurl\n";