]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
all: prefer HTTPS to HTTP
authorStefan Kangas <stefankangas@gmail.com>
Sun, 18 Sep 2022 14:15:16 +0000 (16:15 +0200)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 18 Sep 2022 18:42:02 +0000 (11:42 -0700)
* README-hacking:
* README-prereq:
* THANKS.in:
* doc/sort-version.texi (Other version/natural sort implementations):
* gl/lib/rand-isaac.c:
* gl/tests/test-rand-isaac.c:
* src/operand2sig.c (operand2sig):
* src/remove.c (nonexistent_file_errno):
* tests/misc/env-signal-handler.sh:
* tests/misc/sort-debug-warn.sh (LC_ALL): Prefer HTTPS to HTTP.
Addresses https://bugs.gnu.org/56512
Copyright-paperwork-exempt: yes

README-hacking
README-prereq
THANKS.in
doc/sort-version.texi
gl/lib/rand-isaac.c
gl/tests/test-rand-isaac.c
src/operand2sig.c
src/remove.c
tests/misc/env-signal-handler.sh
tests/misc/sort-debug-warn.sh

index 1343011bc98fb2c2c34e5476d847d74380849ab4..60e40cabe0d42ecc784f8827fe99220379e91119 100644 (file)
@@ -16,7 +16,7 @@ Specific development tools and versions will be checked for and listed by
 the bootstrap script.  See README-prereq for specific notes on obtaining
 these prerequisite tools.
 
-Valgrind <http://valgrind.org/> is also highly recommended, if
+Valgrind <https://valgrind.org/> is also highly recommended, if
 Valgrind supports your architecture.  See also README-valgrind
 (if present).
 
index 176fb219968a1c9091a352e91ff57f4c36b96832..9ae4b12af907e40063aff73ab683e6926f4aec13 100644 (file)
@@ -15,7 +15,7 @@ as well as by 'make'.  They include:
 - Perl       <https://www.cpan.org/>
 - Tar        <https://www.gnu.org/software/tar/>
 - Texinfo    <https://www.gnu.org/software/texinfo/>
-- Wget       <http://www.gnu.org/software/wget/>
+- Wget       <https://www.gnu.org/software/wget/>
 - XZ Utils   <https://tukaani.org/xz/>
 
 It is generally better to use official packages for your system.
index c67a64b884199d62535319b62b1cf7a4e0971d19..b3827a22caba9dfe7d374da848f000b8240f3021 100644 (file)
--- a/THANKS.in
+++ b/THANKS.in
@@ -132,7 +132,7 @@ Clark Morgan                        cmorgan@aracnet.com
 Clement Wang                        clem.wang@overture.com
 Colin Plumb                         colin@nyx.net
 Collin Rogowski                     collin@rogowski.de
-Cray-Cyber Project                  http://www.cray-cyber.org
+Cray-Cyber Project                  https://www.cray-cyber.org
 Cristian Cadar                      cristic@stanford.edu
 Cyril Bouthors                      cyril@bouthors.org
 Dale Scheetz                        dwarf@polaris.net
index 175559f7a2b0dc9f6083b53fbbf9c0fd0e27229c..c136e62926ebaad29524b773f942a5d060eb84c6 100644 (file)
@@ -864,9 +864,9 @@ glob modifier} @samp{*(n)} will expand to files in natural sort order.
 @item
 When writing C programs, the GNU libc library (@samp{glibc})
 provides the
-@uref{http://man7.org/linux/man-pages/man3/strverscmp.3.html,
+@uref{https://man7.org/linux/man-pages/man3/strverscmp.3.html,
 strvercmp(3)} function to compare two strings, and
-@uref{http://man7.org/linux/man-pages/man3/versionsort.3.html,versionsort(3)}
+@uref{https://man7.org/linux/man-pages/man3/versionsort.3.html,versionsort(3)}
 function to compare two directory entries (despite the names, they are
 not identical to GNU Coreutils version sort ordering).
 
index e19c47a678e220ddfbfff0ff7447ffa2dec13aa6..9a3268ed374a3e0cc965c89cf07d15119a3c1752 100644 (file)
@@ -25,7 +25,7 @@
  * so I can be a little bit experimental in the choice of RNGs here.
  *
  * This generator is based somewhat on RC4, but has analysis
- * <http://burtleburtle.net/bob/rand/isaacafa.html>
+ * <https://burtleburtle.net/bob/rand/isaacafa.html>
  * pointing to it actually being better.  I like it because it's nice
  * and fast, and because the author did good work analyzing it.
  * --------------------------------------------------------------------
index 47ad5d5802c40e3921c8db3c9f93db44ac243d29..f414b2d2bcc971f6a12e11aa5111560c4492625b 100644 (file)
@@ -28,7 +28,7 @@
 #include "macros.h"
 
 /* This expected output was generated by running the programs in
-   <http://burtleburtle.net/bob/rand/isaacafa.html>, as last modified
+   <https://burtleburtle.net/bob/rand/isaacafa.html>, as last modified
    on 2010-01-22. The 32-bit numbers were output by rand.c, and the
    64-bit by isaac64.c, both on x86, as those programs are not
    portable to 64-bit platforms.  */
index 3de1c84e6a1b39b582e2adf531057214682dddbd..3ae2484e7e894e4d27833f1a3bec48d69b4d9fa8 100644 (file)
@@ -48,7 +48,7 @@ operand2sig (char const *operand, char *signame)
          But some shells may use other adjustments in future to be
          (forward) compatible with systems that support
          wider exit status values as discussed at
-         http://austingroupbugs.net/view.php?id=947  */
+         https://austingroupbugs.net/view.php?id=947  */
 
       char *endp;
       long int l = (errno = 0, strtol (operand, &endp, 10));
index e2f27ca4fbc0fb4946d73077c8ccb46525f7231d..6756c409de5dfc29c4dc025e3d4726d74203042f 100644 (file)
@@ -323,7 +323,7 @@ nonexistent_file_errno (int errnum)
      Another case to consider is when a particular name is invalid for
      a given file system.  In 2011, smbfs returns EINVAL, but the next
      revision of POSIX will require EILSEQ for that situation:
-     http://austingroupbugs.net/view.php?id=293
+     https://austingroupbugs.net/view.php?id=293
   */
 
   switch (errnum)
index ff4ffa14c751d57ff5b441c289d776170aa0a09c..182d422e154455c3e1b50f26fae46651002029f1 100755 (executable)
@@ -25,7 +25,7 @@ trap_sigpipe_or_skip_
 # https://lists.gnu.org/archive/html/coreutils/2020-03/msg00004.html
 require_bash_as_SHELL_
 
-# Paraphrasing http://bugs.gnu.org/34488#8:
+# Paraphrasing https://bugs.gnu.org/34488#8:
 # POSIX requires that sh started with an inherited ignored SIGPIPE must
 # silently ignore all attempts from within the shell to restore SIGPIPE
 # handling to child processes of the shell:
index beb11c97ea050eb83d89690cca7d9668769a79da..4898c049546d05801dc8b888cddb2c8ecfc4f2a7 100755 (executable)
@@ -125,7 +125,7 @@ EOF
 LC_ALL=missing sort --debug /dev/null 2>out || fail=1
 # musl libc maps unknown locales to the default utf8 locale
 # with no way to determine failures.  This is discussed at:
-# http://www.openwall.com/lists/musl/2016/04/02/1
+# https://www.openwall.com/lists/musl/2016/04/02/1
 if ! grep -E 'using .*(missing|C.UTF-8).* sorting rules' out; then
   compare exp out || fail=1
 fi