]> Savannah Git Hosting - gnulib.git/commitdiff
all: Replace more http URLs by https URLs.
authorBruno Haible <bruno@clisp.org>
Sat, 5 May 2018 10:23:02 +0000 (12:23 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 5 May 2018 10:34:18 +0000 (12:34 +0200)
* lib/localename.c: Use https: URL.
* lib/timespec.h: Likewise.

ChangeLog
lib/localename.c
lib/timespec.h

index 33365241ceea939ea6db757909d85d75cff7637e..f4dc0778b36254794311a274739661237651819b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 694bd2206b0fed446072ae2d2f35b4ea0689ed3a..c9415c98490d5ec01089cdba34b530a47de79004 100644 (file)
@@ -1331,7 +1331,7 @@ gl_locale_name_canonicalize (char *name)
   };
 
   /* 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 @@ gl_locale_name_from_win32_LANGID (LANGID langid)
     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)
       {
index eef3030d9c55d798ab3a6f314f40453159b8504b..94ba8d0b6a0f93e40cb4b26e5331071eed403405 100644 (file)
@@ -87,7 +87,7 @@ timespec_cmp (struct timespec a, struct timespec b)
     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);