aboutsummaryrefslogtreecommitdiff
path: root/signal
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-09-06 22:40:42 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-09-07 02:43:31 -0700
commit5a82c74822d3272df2f5929133680478c0cfb4bd (patch)
tree85871266212f0119b41ec966fec52e164edf41ba /signal
parent1b7f04070bd94f259e2ed24d6fb76309d64fb164 (diff)
downloadglibc-5a82c74822d3272df2f5929133680478c0cfb4bd.zip
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.gz
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.bz2
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
Diffstat (limited to 'signal')
-rw-r--r--signal/Makefile2
-rw-r--r--signal/allocrtsig.c2
-rw-r--r--signal/bits/types/__sigval_t.h2
-rw-r--r--signal/bits/types/struct_sigstack.h2
-rw-r--r--signal/kill.c2
-rw-r--r--signal/killpg.c2
-rw-r--r--signal/raise.c2
-rw-r--r--signal/sigaction.c2
-rw-r--r--signal/sigaddset.c2
-rw-r--r--signal/sigaltstack.c2
-rw-r--r--signal/sigandset.c2
-rw-r--r--signal/sigblock.c2
-rw-r--r--signal/sigdelset.c2
-rw-r--r--signal/sigempty.c2
-rw-r--r--signal/sigfillset.c2
-rw-r--r--signal/siggetmask.c2
-rw-r--r--signal/sighold.c2
-rw-r--r--signal/sigignore.c2
-rw-r--r--signal/sigintr.c2
-rw-r--r--signal/sigisempty.c2
-rw-r--r--signal/sigismem.c2
-rw-r--r--signal/signal.c2
-rw-r--r--signal/signal.h2
-rw-r--r--signal/sigorset.c2
-rw-r--r--signal/sigpause.c2
-rw-r--r--signal/sigpending.c2
-rw-r--r--signal/sigprocmask.c2
-rw-r--r--signal/sigqueue.c2
-rw-r--r--signal/sigrelse.c2
-rw-r--r--signal/sigreturn.c2
-rw-r--r--signal/sigset.c2
-rw-r--r--signal/sigsetmask.c2
-rw-r--r--signal/sigsetops.c2
-rw-r--r--signal/sigstack.c2
-rw-r--r--signal/sigsuspend.c2
-rw-r--r--signal/sigtimedwait.c2
-rw-r--r--signal/sigvec.c2
-rw-r--r--signal/sigwait.c2
-rw-r--r--signal/sigwaitinfo.c2
-rw-r--r--signal/sysv_signal.c2
-rw-r--r--signal/tst-minsigstksz-1.c2
-rw-r--r--signal/tst-minsigstksz-2.c2
-rw-r--r--signal/tst-minsigstksz-3.c2
-rw-r--r--signal/tst-minsigstksz-3a.c2
-rw-r--r--signal/tst-minsigstksz-4.c2
-rw-r--r--signal/tst-raise.c2
-rw-r--r--signal/tst-sigaction.c2
-rw-r--r--signal/tst-sigsimple.c2
-rw-r--r--signal/tst-sigwait-eintr.c2
49 files changed, 49 insertions, 49 deletions
diff --git a/signal/Makefile b/signal/Makefile
index 4596112..5959596 100644
--- a/signal/Makefile
+++ b/signal/Makefile
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
#
# Makefile for signal routines.
diff --git a/signal/allocrtsig.c b/signal/allocrtsig.c
index 7de0fe7..4de4191 100644
--- a/signal/allocrtsig.c
+++ b/signal/allocrtsig.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
diff --git a/signal/bits/types/__sigval_t.h b/signal/bits/types/__sigval_t.h
index 5fdd289..7b61755 100644
--- a/signal/bits/types/__sigval_t.h
+++ b/signal/bits/types/__sigval_t.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef ____sigval_t_defined
#define ____sigval_t_defined
diff --git a/signal/bits/types/struct_sigstack.h b/signal/bits/types/struct_sigstack.h
index e4a7fc5..6cc40ca 100644
--- a/signal/bits/types/struct_sigstack.h
+++ b/signal/bits/types/struct_sigstack.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef __sigstack_defined
#define __sigstack_defined 1
diff --git a/signal/kill.c b/signal/kill.c
index c98a7b5..cff815f 100644
--- a/signal/kill.c
+++ b/signal/kill.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/killpg.c b/signal/killpg.c
index df9c82e..6121826 100644
--- a/signal/killpg.c
+++ b/signal/killpg.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/raise.c b/signal/raise.c
index 8221ec4..122d73c 100644
--- a/signal/raise.c
+++ b/signal/raise.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
#include <errno.h>
diff --git a/signal/sigaction.c b/signal/sigaction.c
index 8520837..fa25c5a 100644
--- a/signal/sigaction.c
+++ b/signal/sigaction.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigaddset.c b/signal/sigaddset.c
index 81da8a5..3f95a26 100644
--- a/signal/sigaddset.c
+++ b/signal/sigaddset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigaltstack.c b/signal/sigaltstack.c
index 08e0fad..fc704bf 100644
--- a/signal/sigaltstack.c
+++ b/signal/sigaltstack.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigandset.c b/signal/sigandset.c
index da10f03..2fa4c49 100644
--- a/signal/sigandset.c
+++ b/signal/sigandset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigblock.c b/signal/sigblock.c
index b1c8f44..8bd9953 100644
--- a/signal/sigblock.c
+++ b/signal/sigblock.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigdelset.c b/signal/sigdelset.c
index aa1972e..d1d7a33 100644
--- a/signal/sigdelset.c
+++ b/signal/sigdelset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigempty.c b/signal/sigempty.c
index 592bcb1..2dedec7 100644
--- a/signal/sigempty.c
+++ b/signal/sigempty.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigfillset.c b/signal/sigfillset.c
index 6f6c4aa..f401299 100644
--- a/signal/sigfillset.c
+++ b/signal/sigfillset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/siggetmask.c b/signal/siggetmask.c
index 01e808c..29e40e7 100644
--- a/signal/siggetmask.c
+++ b/signal/siggetmask.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
diff --git a/signal/sighold.c b/signal/sighold.c
index 8154143..b99a384 100644
--- a/signal/sighold.c
+++ b/signal/sighold.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/signal/sigignore.c b/signal/sigignore.c
index a45340e..adea597 100644
--- a/signal/sigignore.c
+++ b/signal/sigignore.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigintr.c b/signal/sigintr.c
index 2648f5b..2892420 100644
--- a/signal/sigintr.c
+++ b/signal/sigintr.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigisempty.c b/signal/sigisempty.c
index bb995dd..018a3b0 100644
--- a/signal/sigisempty.c
+++ b/signal/sigisempty.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigismem.c b/signal/sigismem.c
index 2befaf5..e54bd0d 100644
--- a/signal/sigismem.c
+++ b/signal/sigismem.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/signal.c b/signal/signal.c
index 64f9585..f9a269c 100644
--- a/signal/signal.c
+++ b/signal/signal.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/signal.h b/signal/signal.h
index 4c0de7f..b6829d3 100644
--- a/signal/signal.h
+++ b/signal/signal.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/*
* ISO C99 Standard: 7.14 Signal handling <signal.h>
diff --git a/signal/sigorset.c b/signal/sigorset.c
index cca95bc..bd3e361 100644
--- a/signal/sigorset.c
+++ b/signal/sigorset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigpause.c b/signal/sigpause.c
index 089ac7a..2799870 100644
--- a/signal/sigpause.c
+++ b/signal/sigpause.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#define sigpause __rename_sigpause
#include <errno.h>
diff --git a/signal/sigpending.c b/signal/sigpending.c
index 3f1168c..add1073 100644
--- a/signal/sigpending.c
+++ b/signal/sigpending.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stddef.h>
diff --git a/signal/sigprocmask.c b/signal/sigprocmask.c
index 76fea52..036de24 100644
--- a/signal/sigprocmask.c
+++ b/signal/sigprocmask.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigqueue.c b/signal/sigqueue.c
index 4c2dfbc..40ee26d 100644
--- a/signal/sigqueue.c
+++ b/signal/sigqueue.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigrelse.c b/signal/sigrelse.c
index 433a258..cf43f65 100644
--- a/signal/sigrelse.c
+++ b/signal/sigrelse.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/signal/sigreturn.c b/signal/sigreturn.c
index 003ef1a..f8d0548 100644
--- a/signal/sigreturn.c
+++ b/signal/sigreturn.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
#include <errno.h>
diff --git a/signal/sigset.c b/signal/sigset.c
index 7615f75..52bd059 100644
--- a/signal/sigset.c
+++ b/signal/sigset.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigsetmask.c b/signal/sigsetmask.c
index 882d98e..6e10d05 100644
--- a/signal/sigsetmask.c
+++ b/signal/sigsetmask.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigsetops.c b/signal/sigsetops.c
index 9299ca5..c2b9d67 100644
--- a/signal/sigsetops.c
+++ b/signal/sigsetops.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
#include <sigsetops.h>
diff --git a/signal/sigstack.c b/signal/sigstack.c
index 57bd12a..81acf69 100644
--- a/signal/sigstack.c
+++ b/signal/sigstack.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigsuspend.c b/signal/sigsuspend.c
index 83c3511..330f742 100644
--- a/signal/sigsuspend.c
+++ b/signal/sigsuspend.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigtimedwait.c b/signal/sigtimedwait.c
index e73f56b..7561ea3 100644
--- a/signal/sigtimedwait.c
+++ b/signal/sigtimedwait.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigvec.c b/signal/sigvec.c
index c747f2b..04ad372 100644
--- a/signal/sigvec.c
+++ b/signal/sigvec.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <shlib-compat.h>
diff --git a/signal/sigwait.c b/signal/sigwait.c
index 2635b88..d2458ee 100644
--- a/signal/sigwait.c
+++ b/signal/sigwait.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sigwaitinfo.c b/signal/sigwaitinfo.c
index 10ba382..af09e7e 100644
--- a/signal/sigwaitinfo.c
+++ b/signal/sigwaitinfo.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/sysv_signal.c b/signal/sysv_signal.c
index d79b84d..c321624 100644
--- a/signal/sysv_signal.c
+++ b/signal/sysv_signal.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/tst-minsigstksz-1.c b/signal/tst-minsigstksz-1.c
index 00344d5..9e2c62f 100644
--- a/signal/tst-minsigstksz-1.c
+++ b/signal/tst-minsigstksz-1.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <support/xsignal.h>
#include <support/support.h>
diff --git a/signal/tst-minsigstksz-2.c b/signal/tst-minsigstksz-2.c
index 3368dde..a022fb7 100644
--- a/signal/tst-minsigstksz-2.c
+++ b/signal/tst-minsigstksz-2.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <support/xsignal.h>
#include <support/support.h>
diff --git a/signal/tst-minsigstksz-3.c b/signal/tst-minsigstksz-3.c
index a8d9a63..e54cc09 100644
--- a/signal/tst-minsigstksz-3.c
+++ b/signal/tst-minsigstksz-3.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <support/xsignal.h>
#include <support/support.h>
diff --git a/signal/tst-minsigstksz-3a.c b/signal/tst-minsigstksz-3a.c
index b58b8d0..93883f8 100644
--- a/signal/tst-minsigstksz-3a.c
+++ b/signal/tst-minsigstksz-3a.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <support/xsignal.h>
#include <support/support.h>
diff --git a/signal/tst-minsigstksz-4.c b/signal/tst-minsigstksz-4.c
index 0dc63b4..8d799b1 100644
--- a/signal/tst-minsigstksz-4.c
+++ b/signal/tst-minsigstksz-4.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <support/xsignal.h>
#include <support/support.h>
diff --git a/signal/tst-raise.c b/signal/tst-raise.c
index d7959c2..a84e9af 100644
--- a/signal/tst-raise.c
+++ b/signal/tst-raise.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <error.h>
diff --git a/signal/tst-sigaction.c b/signal/tst-sigaction.c
index 009087d..b50169c 100644
--- a/signal/tst-sigaction.c
+++ b/signal/tst-sigaction.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <signal.h>
#include <unistd.h>
diff --git a/signal/tst-sigsimple.c b/signal/tst-sigsimple.c
index 4e2dd26..6316b9e 100644
--- a/signal/tst-sigsimple.c
+++ b/signal/tst-sigsimple.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/signal/tst-sigwait-eintr.c b/signal/tst-sigwait-eintr.c
index 73dd252..0bdeb61 100644
--- a/signal/tst-sigwait-eintr.c
+++ b/signal/tst-sigwait-eintr.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>