changeset 39312:82f26115dbb8

all: Replace more http URLs by https URLs. * lib/localename.c: Use https: URL. * lib/timespec.h: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sat, 05 May 2018 12:23:02 +0200
parents ba9784884ffe
children 6b0fda728c9b
files ChangeLog lib/localename.c lib/timespec.h
diffstat 3 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu May 03 17:38:50 2018 -0700
+++ b/ChangeLog	Sat May 05 12:23:02 2018 +0200
@@ -1,3 +1,9 @@
+2018-05-05  Bruno Haible  <bruno@clisp.org>
+
+	all: Replace more http URLs by https URLs.
+	* lib/localename.c: Use https: URL.
+	* lib/timespec.h: Likewise.
+
 2018-05-03  Paul Eggert  <eggert@cs.ucla.edu>
 
 	maint: port more modules to GCC 8
--- a/lib/localename.c	Thu May 03 17:38:50 2018 -0700
+++ b/lib/localename.c	Sat May 05 12:23:02 2018 +0200
@@ -1331,7 +1331,7 @@
   };
 
   /* Convert script names (ISO 15924) to Unix conventions.
-     See http://www.unicode.org/iso15924/iso15924-codes.html  */
+     See https://www.unicode.org/iso15924/iso15924-codes.html  */
   typedef struct { const char script[4+1]; const char unixy[9+1]; }
           script_entry;
   static const script_entry script_table[] = {
@@ -1492,7 +1492,7 @@
     sub = SUBLANGID (langid);
 
     /* Dispatch on language.
-       See also http://www.unicode.org/unicode/onlinedat/languages.html .
+       See also https://www.unicode.org/unicode/onlinedat/languages.html .
        For details about languages, see https://www.ethnologue.com/ .  */
     switch (primary)
       {
--- a/lib/timespec.h	Thu May 03 17:38:50 2018 -0700
+++ b/lib/timespec.h	Sat May 05 12:23:02 2018 +0200
@@ -87,7 +87,7 @@
     return 1;
 
   /* Pacify gcc -Wstrict-overflow (bleeding-edge circa 2017-10-02).  See:
-     http://lists.gnu.org/r/bug-gnulib/2017-10/msg00006.html  */
+     https://lists.gnu.org/r/bug-gnulib/2017-10/msg00006.html  */
   assume (-1 <= a.tv_nsec && a.tv_nsec <= 2 * TIMESPEC_RESOLUTION);
   assume (-1 <= b.tv_nsec && b.tv_nsec <= 2 * TIMESPEC_RESOLUTION);