From: Bruno Haible Date: Sat, 5 May 2018 10:23:02 +0000 (+0200) Subject: all: Replace more http URLs by https URLs. X-Git-Tag: v1.0~5668 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=0f3906631fa19caed9321cab02e2f4ba0a3bde72;p=gnulib.git all: Replace more http URLs by https URLs. * lib/localename.c: Use https: URL. * lib/timespec.h: Likewise. --- diff --git a/ChangeLog b/ChangeLog index 33365241ce..f4dc0778b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-05-05 Bruno Haible + + all: Replace more http URLs by https URLs. + * lib/localename.c: Use https: URL. + * lib/timespec.h: Likewise. + 2018-05-03 Paul Eggert maint: port more modules to GCC 8 diff --git a/lib/localename.c b/lib/localename.c index 694bd2206b..c9415c9849 100644 --- a/lib/localename.c +++ b/lib/localename.c @@ -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) { diff --git a/lib/timespec.h b/lib/timespec.h index eef3030d9c..94ba8d0b6a 100644 --- a/lib/timespec.h +++ b/lib/timespec.h @@ -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);