summaryrefslogtreecommitdiff
path: root/gl
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-09-18 16:15:16 +0200
committerPaul Eggert <eggert@cs.ucla.edu>2022-09-18 11:42:02 -0700
commit875c636ce503b65f86719f7a2959e4a9fea952e3 (patch)
tree92b2d35b2ef0cda510eb58d66e7c234bd92ef85e /gl
parent9062704bf8d3b75f73272bb2a8d6539568933e57 (diff)
downloadcoreutils-875c636ce503b65f86719f7a2959e4a9fea952e3.tar.gz
all: prefer HTTPS to HTTP
* 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
Diffstat (limited to 'gl')
-rw-r--r--gl/lib/rand-isaac.c2
-rw-r--r--gl/tests/test-rand-isaac.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gl/lib/rand-isaac.c b/gl/lib/rand-isaac.c
index e19c47a67..9a3268ed3 100644
--- a/gl/lib/rand-isaac.c
+++ b/gl/lib/rand-isaac.c
@@ -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.
* --------------------------------------------------------------------
diff --git a/gl/tests/test-rand-isaac.c b/gl/tests/test-rand-isaac.c
index 47ad5d580..f414b2d2b 100644
--- a/gl/tests/test-rand-isaac.c
+++ b/gl/tests/test-rand-isaac.c
@@ -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. */