about summary refs log tree commit diff
path: root/malloc
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 /malloc
parent1b7f04070bd94f259e2ed24d6fb76309d64fb164 (diff)
downloadglibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.gz
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.xz
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.zip
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 'malloc')
-rw-r--r--malloc/Makefile2
-rw-r--r--malloc/alloc_buffer_alloc_array.c2
-rw-r--r--malloc/alloc_buffer_allocate.c2
-rw-r--r--malloc/alloc_buffer_copy_bytes.c2
-rw-r--r--malloc/alloc_buffer_copy_string.c2
-rw-r--r--malloc/alloc_buffer_create_failure.c2
-rw-r--r--malloc/arena.c2
-rw-r--r--malloc/dynarray-skeleton.c2
-rw-r--r--malloc/dynarray.h2
-rw-r--r--malloc/dynarray_at_failure.c2
-rw-r--r--malloc/dynarray_emplace_enlarge.c2
-rw-r--r--malloc/dynarray_finalize.c2
-rw-r--r--malloc/dynarray_resize.c2
-rw-r--r--malloc/dynarray_resize_clear.c2
-rw-r--r--malloc/hooks.c2
-rw-r--r--malloc/malloc-hooks.h2
-rw-r--r--malloc/malloc-internal.h2
-rw-r--r--malloc/malloc.c2
-rw-r--r--malloc/malloc.h2
-rw-r--r--malloc/mcheck-init.c2
-rw-r--r--malloc/mcheck.c2
-rw-r--r--malloc/mcheck.h2
-rw-r--r--malloc/memusage.c2
-rwxr-xr-xmalloc/memusage.sh2
-rw-r--r--malloc/memusagestat.c2
-rw-r--r--malloc/morecore.c2
-rw-r--r--malloc/mtrace.c2
-rw-r--r--malloc/mtrace.pl2
-rw-r--r--malloc/obstack.c2
-rw-r--r--malloc/obstack.h2
-rw-r--r--malloc/reallocarray.c2
-rw-r--r--malloc/scratch_buffer_grow.c2
-rw-r--r--malloc/scratch_buffer_grow_preserve.c2
-rw-r--r--malloc/scratch_buffer_set_array_size.c2
-rw-r--r--malloc/set-freeres.c2
-rw-r--r--malloc/thread-freeres.c2
-rw-r--r--malloc/tst-alloc_buffer.c2
-rw-r--r--malloc/tst-calloc.c2
-rw-r--r--malloc/tst-dynarray-at-fail.c2
-rw-r--r--malloc/tst-dynarray-fail.c2
-rw-r--r--malloc/tst-dynarray-shared.h2
-rw-r--r--malloc/tst-dynarray.c2
-rw-r--r--malloc/tst-interpose-aux-nothread.c2
-rw-r--r--malloc/tst-interpose-aux-thread.c2
-rw-r--r--malloc/tst-interpose-aux.c2
-rw-r--r--malloc/tst-interpose-aux.h2
-rw-r--r--malloc/tst-interpose-nothread.c2
-rw-r--r--malloc/tst-interpose-skeleton.c2
-rw-r--r--malloc/tst-interpose-static-nothread.c2
-rw-r--r--malloc/tst-interpose-static-thread.c2
-rw-r--r--malloc/tst-interpose-thread.c2
-rw-r--r--malloc/tst-malloc-backtrace.c2
-rw-r--r--malloc/tst-malloc-fork-deadlock.c2
-rw-r--r--malloc/tst-malloc-tcache-leak.c2
-rw-r--r--malloc/tst-malloc-thread-exit.c2
-rw-r--r--malloc/tst-malloc-thread-fail.c2
-rw-r--r--malloc/tst-malloc-too-large.c2
-rw-r--r--malloc/tst-malloc-usable.c2
-rw-r--r--malloc/tst-malloc.c2
-rw-r--r--malloc/tst-malloc_info.c2
-rw-r--r--malloc/tst-mallocfork2.c2
-rw-r--r--malloc/tst-mallocstate.c2
-rw-r--r--malloc/tst-mallopt.c2
-rw-r--r--malloc/tst-mcheck.c2
-rw-r--r--malloc/tst-memalign.c2
-rw-r--r--malloc/tst-mtrace.c2
-rwxr-xr-xmalloc/tst-mtrace.sh2
-rw-r--r--malloc/tst-mxfast.c2
-rw-r--r--malloc/tst-posix_memalign.c2
-rw-r--r--malloc/tst-pvalloc.c2
-rw-r--r--malloc/tst-realloc.c2
-rw-r--r--malloc/tst-reallocarray.c2
-rw-r--r--malloc/tst-scratch_buffer.c2
-rw-r--r--malloc/tst-tcfree1.c2
-rw-r--r--malloc/tst-tcfree2.c2
-rw-r--r--malloc/tst-tcfree3.c2
-rw-r--r--malloc/tst-valloc.c2
77 files changed, 77 insertions, 77 deletions
diff --git a/malloc/Makefile b/malloc/Makefile
index 742c515eb2..c53b778cdc 100644
--- a/malloc/Makefile
+++ b/malloc/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 malloc routines
diff --git a/malloc/alloc_buffer_alloc_array.c b/malloc/alloc_buffer_alloc_array.c
index 5460453a0b..30fdf23146 100644
--- a/malloc/alloc_buffer_alloc_array.c
+++ b/malloc/alloc_buffer_alloc_array.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 <alloc_buffer.h>
 #include <libc-pointer-arith.h>
diff --git a/malloc/alloc_buffer_allocate.c b/malloc/alloc_buffer_allocate.c
index bf97c575c0..10472229bc 100644
--- a/malloc/alloc_buffer_allocate.c
+++ b/malloc/alloc_buffer_allocate.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 <alloc_buffer.h>
 
diff --git a/malloc/alloc_buffer_copy_bytes.c b/malloc/alloc_buffer_copy_bytes.c
index 986565465a..482900f7c0 100644
--- a/malloc/alloc_buffer_copy_bytes.c
+++ b/malloc/alloc_buffer_copy_bytes.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 <alloc_buffer.h>
 
diff --git a/malloc/alloc_buffer_copy_string.c b/malloc/alloc_buffer_copy_string.c
index 92d39ffee1..dffed8b008 100644
--- a/malloc/alloc_buffer_copy_string.c
+++ b/malloc/alloc_buffer_copy_string.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 <alloc_buffer.h>
 
diff --git a/malloc/alloc_buffer_create_failure.c b/malloc/alloc_buffer_create_failure.c
index 0f7abc12c3..78f91f9405 100644
--- a/malloc/alloc_buffer_create_failure.c
+++ b/malloc/alloc_buffer_create_failure.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 <alloc_buffer.h>
 #include <stdio.h>
diff --git a/malloc/arena.c b/malloc/arena.c
index a32eb403ec..74815ac9c8 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -15,7 +15,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include <stdbool.h>
 
diff --git a/malloc/dynarray-skeleton.c b/malloc/dynarray-skeleton.c
index c791c5d16f..0fc38324d9 100644
--- a/malloc/dynarray-skeleton.c
+++ b/malloc/dynarray-skeleton.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/>.  */
 
 /* Pre-processor macros which act as parameters:
 
diff --git a/malloc/dynarray.h b/malloc/dynarray.h
index 290a111b87..3c4141e296 100644
--- a/malloc/dynarray.h
+++ b/malloc/dynarray.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/>.  */
 
 /* To use the dynarray facility, you need to include
    <malloc/dynarray-skeleton.c> and define the parameter macros
diff --git a/malloc/dynarray_at_failure.c b/malloc/dynarray_at_failure.c
index a7c42e4a67..d3c8a989db 100644
--- a/malloc/dynarray_at_failure.c
+++ b/malloc/dynarray_at_failure.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 <dynarray.h>
 #include <stdio.h>
diff --git a/malloc/dynarray_emplace_enlarge.c b/malloc/dynarray_emplace_enlarge.c
index 574194d762..c2fbd00008 100644
--- a/malloc/dynarray_emplace_enlarge.c
+++ b/malloc/dynarray_emplace_enlarge.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 <dynarray.h>
 #include <errno.h>
diff --git a/malloc/dynarray_finalize.c b/malloc/dynarray_finalize.c
index a6927074c5..611fc01e3d 100644
--- a/malloc/dynarray_finalize.c
+++ b/malloc/dynarray_finalize.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 <dynarray.h>
 #include <stdlib.h>
diff --git a/malloc/dynarray_resize.c b/malloc/dynarray_resize.c
index 542197b287..f93df1ccd7 100644
--- a/malloc/dynarray_resize.c
+++ b/malloc/dynarray_resize.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 <dynarray.h>
 #include <errno.h>
diff --git a/malloc/dynarray_resize_clear.c b/malloc/dynarray_resize_clear.c
index 47ef552629..6cabc0495c 100644
--- a/malloc/dynarray_resize_clear.c
+++ b/malloc/dynarray_resize_clear.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 <dynarray.h>
 #include <stdlib.h>
diff --git a/malloc/hooks.c b/malloc/hooks.c
index b7a453f6d2..3cb432b97f 100644
--- a/malloc/hooks.c
+++ b/malloc/hooks.c
@@ -15,7 +15,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 /* What to do if the standard debugging hooks are in place and a
    corrupt pointer is detected: do nothing (0), print an error message
diff --git a/malloc/malloc-hooks.h b/malloc/malloc-hooks.h
index 8ada4b61b3..c7c9b345b4 100644
--- a/malloc/malloc-hooks.h
+++ b/malloc/malloc-hooks.h
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #ifndef _MALLOC_HOOKS_H
 #define _MALLOC_HOOKS_H
diff --git a/malloc/malloc-internal.h b/malloc/malloc-internal.h
index 54d90f901b..9a8f6c0132 100644
--- a/malloc/malloc-internal.h
+++ b/malloc/malloc-internal.h
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #ifndef _MALLOC_INTERNAL_H
 #define _MALLOC_INTERNAL_H
diff --git a/malloc/malloc.c b/malloc/malloc.c
index fe973770a6..5d3e82a8f6 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -16,7 +16,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 /*
   This is a version (aka ptmalloc2) of malloc/free/realloc written by
diff --git a/malloc/malloc.h b/malloc/malloc.h
index 70d8282bdc..ba21b6907d 100644
--- a/malloc/malloc.h
+++ b/malloc/malloc.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 _MALLOC_H
 #define _MALLOC_H 1
diff --git a/malloc/mcheck-init.c b/malloc/mcheck-init.c
index 246db92a9c..c6b8c73ae8 100644
--- a/malloc/mcheck-init.c
+++ b/malloc/mcheck-init.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/>.  */
 
 /* The object of this file should be installed as libmcheck.a,
    so one can do -lmcheck to turn on mcheck.  */
diff --git a/malloc/mcheck.c b/malloc/mcheck.c
index 9b6413e657..521ff4bf60 100644
--- a/malloc/mcheck.c
+++ b/malloc/mcheck.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/>.  */
 
 #ifndef _MALLOC_INTERNAL
 # define _MALLOC_INTERNAL
diff --git a/malloc/mcheck.h b/malloc/mcheck.h
index 6290288c69..923c5a5ae6 100644
--- a/malloc/mcheck.h
+++ b/malloc/mcheck.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/>.  */
 
 #ifndef _MCHECK_H
 #define _MCHECK_H       1
diff --git a/malloc/memusage.c b/malloc/memusage.c
index 6d5f8f4f40..8779c4b66d 100644
--- a/malloc/memusage.c
+++ b/malloc/memusage.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 <assert.h>
 #include <atomic.h>
diff --git a/malloc/memusage.sh b/malloc/memusage.sh
index ee080a2ece..8af9c956bf 100755
--- a/malloc/memusage.sh
+++ b/malloc/memusage.sh
@@ -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/>.
 
 memusageso='@SLIBDIR@/libmemusage.so'
 memusagestat='@BINDIR@/memusagestat'
diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c
index c3c21e448a..62da3e4f16 100644
--- a/malloc/memusagestat.c
+++ b/malloc/memusagestat.c
@@ -14,7 +14,7 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, see <http://www.gnu.org/licenses/>.  */
+   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
 
 #define _FILE_OFFSET_BITS 64
 
diff --git a/malloc/morecore.c b/malloc/morecore.c
index b647847f80..59d3824a0e 100644
--- a/malloc/morecore.c
+++ b/malloc/morecore.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/>.  */
 
 #ifndef _MALLOC_INTERNAL
 # define _MALLOC_INTERNAL
diff --git a/malloc/mtrace.c b/malloc/mtrace.c
index 2fda262508..707f998815 100644
--- a/malloc/mtrace.c
+++ b/malloc/mtrace.c
@@ -16,7 +16,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 _MALLOC_INTERNAL
 # define _MALLOC_INTERNAL
diff --git a/malloc/mtrace.pl b/malloc/mtrace.pl
index aedbb0ebf2..909c0b1262 100644
--- a/malloc/mtrace.pl
+++ b/malloc/mtrace.pl
@@ -18,7 +18,7 @@ eval "exec @PERL@ -S $0 $@"
 
 # 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/>.
 
 $VERSION = "@VERSION@";
 $PKGVERSION = "@PKGVERSION@";
diff --git a/malloc/obstack.c b/malloc/obstack.c
index 1669641983..3f7536573b 100644
--- a/malloc/obstack.c
+++ b/malloc/obstack.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/>.  */
 
 
 #ifdef _LIBC
diff --git a/malloc/obstack.h b/malloc/obstack.h
index 479c4ec19f..b5a196aace 100644
--- a/malloc/obstack.h
+++ b/malloc/obstack.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/>.  */
 
 /* Summary:
 
diff --git a/malloc/reallocarray.c b/malloc/reallocarray.c
index f4d7ac4f72..6cd39bd60e 100644
--- a/malloc/reallocarray.c
+++ b/malloc/reallocarray.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
 #include <malloc.h>
diff --git a/malloc/scratch_buffer_grow.c b/malloc/scratch_buffer_grow.c
index 3754e0f8bc..7179c6e4d7 100644
--- a/malloc/scratch_buffer_grow.c
+++ b/malloc/scratch_buffer_grow.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/>.  */
 
 #ifndef _LIBC
 # include <libc-config.h>
diff --git a/malloc/scratch_buffer_grow_preserve.c b/malloc/scratch_buffer_grow_preserve.c
index 2dbfe79294..62fcc656b6 100644
--- a/malloc/scratch_buffer_grow_preserve.c
+++ b/malloc/scratch_buffer_grow_preserve.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/>.  */
 
 #ifndef _LIBC
 # include <libc-config.h>
diff --git a/malloc/scratch_buffer_set_array_size.c b/malloc/scratch_buffer_set_array_size.c
index 1ae2882a90..dceb69aca1 100644
--- a/malloc/scratch_buffer_set_array_size.c
+++ b/malloc/scratch_buffer_set_array_size.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/>.  */
 
 #ifndef _LIBC
 # include <libc-config.h>
diff --git a/malloc/set-freeres.c b/malloc/set-freeres.c
index c9387888e1..7a0bc607df 100644
--- a/malloc/set-freeres.c
+++ b/malloc/set-freeres.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 <atomic.h>
 #include <stdlib.h>
diff --git a/malloc/thread-freeres.c b/malloc/thread-freeres.c
index ad91755a10..8ab27e8d4f 100644
--- a/malloc/thread-freeres.c
+++ b/malloc/thread-freeres.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 <libc-internal.h>
 #include <malloc-internal.h>
diff --git a/malloc/tst-alloc_buffer.c b/malloc/tst-alloc_buffer.c
index 23b51054c7..cb0667e9e9 100644
--- a/malloc/tst-alloc_buffer.c
+++ b/malloc/tst-alloc_buffer.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 <arpa/inet.h>
 #include <alloc_buffer.h>
diff --git a/malloc/tst-calloc.c b/malloc/tst-calloc.c
index aa3f26d7d7..e455f414b0 100644
--- a/malloc/tst-calloc.c
+++ b/malloc/tst-calloc.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/malloc/tst-dynarray-at-fail.c b/malloc/tst-dynarray-at-fail.c
index d9d3e202fc..75c699c6ac 100644
--- a/malloc/tst-dynarray-at-fail.c
+++ b/malloc/tst-dynarray-at-fail.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 "tst-dynarray-shared.h"
 
diff --git a/malloc/tst-dynarray-fail.c b/malloc/tst-dynarray-fail.c
index e4a786282c..4475fe08ae 100644
--- a/malloc/tst-dynarray-fail.c
+++ b/malloc/tst-dynarray-fail.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/>.  */
 
 /* This test is separate from tst-dynarray because it cannot run under
    valgrind.  */
diff --git a/malloc/tst-dynarray-shared.h b/malloc/tst-dynarray-shared.h
index 91cd0abdd4..1668a476e7 100644
--- a/malloc/tst-dynarray-shared.h
+++ b/malloc/tst-dynarray-shared.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/>.  */
 
 #include <stddef.h>
 
diff --git a/malloc/tst-dynarray.c b/malloc/tst-dynarray.c
index b011970d07..0c07fc86d3 100644
--- a/malloc/tst-dynarray.c
+++ b/malloc/tst-dynarray.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 "tst-dynarray-shared.h"
 
diff --git a/malloc/tst-interpose-aux-nothread.c b/malloc/tst-interpose-aux-nothread.c
index 5c658492e1..51578ff4cc 100644
--- a/malloc/tst-interpose-aux-nothread.c
+++ b/malloc/tst-interpose-aux-nothread.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #define INTERPOSE_THREADS 0
 #include "tst-interpose-aux.c"
diff --git a/malloc/tst-interpose-aux-thread.c b/malloc/tst-interpose-aux-thread.c
index 9d6f6a8e34..d4c97556c1 100644
--- a/malloc/tst-interpose-aux-thread.c
+++ b/malloc/tst-interpose-aux-thread.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #define INTERPOSE_THREADS 1
 #include "tst-interpose-aux.c"
diff --git a/malloc/tst-interpose-aux.c b/malloc/tst-interpose-aux.c
index bf86224401..bbe321e843 100644
--- a/malloc/tst-interpose-aux.c
+++ b/malloc/tst-interpose-aux.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include "tst-interpose-aux.h"
 
diff --git a/malloc/tst-interpose-aux.h b/malloc/tst-interpose-aux.h
index be41be09fe..cc468649ce 100644
--- a/malloc/tst-interpose-aux.h
+++ b/malloc/tst-interpose-aux.h
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #ifndef TST_INTERPOSE_AUX_H
 #define TST_INTERPOSE_AUX_H
diff --git a/malloc/tst-interpose-nothread.c b/malloc/tst-interpose-nothread.c
index c62fb19d4d..4eb394217a 100644
--- a/malloc/tst-interpose-nothread.c
+++ b/malloc/tst-interpose-nothread.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #define INTERPOSE_THREADS 0
 #include "tst-interpose-skeleton.c"
diff --git a/malloc/tst-interpose-skeleton.c b/malloc/tst-interpose-skeleton.c
index 08a7394c52..853ee248d1 100644
--- a/malloc/tst-interpose-skeleton.c
+++ b/malloc/tst-interpose-skeleton.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include <stdio.h>
 #include <stdlib.h>
diff --git a/malloc/tst-interpose-static-nothread.c b/malloc/tst-interpose-static-nothread.c
index 5273f0b67a..a08d0c0d89 100644
--- a/malloc/tst-interpose-static-nothread.c
+++ b/malloc/tst-interpose-static-nothread.c
@@ -14,6 +14,6 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include "tst-interpose-nothread.c"
diff --git a/malloc/tst-interpose-static-thread.c b/malloc/tst-interpose-static-thread.c
index 40fb787fc0..86c4d3f97e 100644
--- a/malloc/tst-interpose-static-thread.c
+++ b/malloc/tst-interpose-static-thread.c
@@ -14,6 +14,6 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include "tst-interpose-nothread.c"
diff --git a/malloc/tst-interpose-thread.c b/malloc/tst-interpose-thread.c
index 50bcabe0bc..c155213c7c 100644
--- a/malloc/tst-interpose-thread.c
+++ b/malloc/tst-interpose-thread.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #define INTERPOSE_THREADS 1
 #include "tst-interpose-skeleton.c"
diff --git a/malloc/tst-malloc-backtrace.c b/malloc/tst-malloc-backtrace.c
index 8702e7e1c5..8873ca9bfa 100644
--- a/malloc/tst-malloc-backtrace.c
+++ b/malloc/tst-malloc-backtrace.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 <stdlib.h>
diff --git a/malloc/tst-malloc-fork-deadlock.c b/malloc/tst-malloc-fork-deadlock.c
index 2da5178ea1..31fa626c37 100644
--- a/malloc/tst-malloc-fork-deadlock.c
+++ b/malloc/tst-malloc-fork-deadlock.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 #include <sys/wait.h>
 #include <unistd.h>
diff --git a/malloc/tst-malloc-tcache-leak.c b/malloc/tst-malloc-tcache-leak.c
index 14344a6f65..3dd346c909 100644
--- a/malloc/tst-malloc-tcache-leak.c
+++ b/malloc/tst-malloc-tcache-leak.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/>.  */
 
 /* The point of this test is to start and exit a large number of
    threads, while at the same time looking to see if the used
diff --git a/malloc/tst-malloc-thread-exit.c b/malloc/tst-malloc-thread-exit.c
index 0693ead9a7..ba1c4df5f9 100644
--- a/malloc/tst-malloc-thread-exit.c
+++ b/malloc/tst-malloc-thread-exit.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/>.  */
 
 /* This thread spawns a number of outer threads, equal to the arena
    limit.  The outer threads run a loop which start and join two
diff --git a/malloc/tst-malloc-thread-fail.c b/malloc/tst-malloc-thread-fail.c
index 2ffe848107..85e77f7894 100644
--- a/malloc/tst-malloc-thread-fail.c
+++ b/malloc/tst-malloc-thread-fail.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 /* This test case attempts to trigger various unusual conditions
    related to allocation failures, notably switching to a different
diff --git a/malloc/tst-malloc-too-large.c b/malloc/tst-malloc-too-large.c
index c1c8cb88cc..51e0514e86 100644
--- a/malloc/tst-malloc-too-large.c
+++ b/malloc/tst-malloc-too-large.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/>.  */
 
 /* Bug 22375 reported a regression in malloc where if after malloc'ing then
    free'ing a small block of memory, malloc is then called with a really
diff --git a/malloc/tst-malloc-usable.c b/malloc/tst-malloc-usable.c
index 882e4d3ea5..aa572fa06a 100644
--- a/malloc/tst-malloc-usable.c
+++ b/malloc/tst-malloc-usable.c
@@ -16,7 +16,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 <malloc.h>
 #include <string.h>
diff --git a/malloc/tst-malloc.c b/malloc/tst-malloc.c
index f9552226ef..186dd5dbb6 100644
--- a/malloc/tst-malloc.c
+++ b/malloc/tst-malloc.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 <malloc.h>
diff --git a/malloc/tst-malloc_info.c b/malloc/tst-malloc_info.c
index d4bbd5c88d..f35c7156a3 100644
--- a/malloc/tst-malloc_info.c
+++ b/malloc/tst-malloc_info.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/>.  */
 
 /* The purpose of this test is to provide a quick way to run
    malloc_info in a multi-threaded process.  */
diff --git a/malloc/tst-mallocfork2.c b/malloc/tst-mallocfork2.c
index 30e7abe6fd..eb0fed649d 100644
--- a/malloc/tst-mallocfork2.c
+++ b/malloc/tst-mallocfork2.c
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
+   not, see <https://www.gnu.org/licenses/>.  */
 
 /* This test will fail if the process is multi-threaded because we
    only have an async-signal-safe fork in the single-threaded case
diff --git a/malloc/tst-mallocstate.c b/malloc/tst-mallocstate.c
index 07d32e0f9b..8fd8732c3a 100644
--- a/malloc/tst-mallocstate.c
+++ b/malloc/tst-mallocstate.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 <errno.h>
 #include <stdbool.h>
diff --git a/malloc/tst-mallopt.c b/malloc/tst-mallopt.c
index ab047fe122..2e24b8b782 100644
--- a/malloc/tst-mallopt.c
+++ b/malloc/tst-mallopt.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 <malloc.h>
 #include <stdio.h>
diff --git a/malloc/tst-mcheck.c b/malloc/tst-mcheck.c
index ac44cb8a6c..4eef5d0eb8 100644
--- a/malloc/tst-mcheck.c
+++ b/malloc/tst-mcheck.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 <stdio.h>
diff --git a/malloc/tst-memalign.c b/malloc/tst-memalign.c
index e7997518cb..de5dfcef8c 100644
--- a/malloc/tst-memalign.c
+++ b/malloc/tst-memalign.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 <malloc.h>
diff --git a/malloc/tst-mtrace.c b/malloc/tst-mtrace.c
index 66d101ca3c..151de4ad30 100644
--- a/malloc/tst-mtrace.c
+++ b/malloc/tst-mtrace.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 <mcheck.h>
 #include <paths.h>
diff --git a/malloc/tst-mtrace.sh b/malloc/tst-mtrace.sh
index 3517d0f57f..3a4a4bbb40 100755
--- a/malloc/tst-mtrace.sh
+++ b/malloc/tst-mtrace.sh
@@ -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/>.
 
 set -e
 
diff --git a/malloc/tst-mxfast.c b/malloc/tst-mxfast.c
index 7a7750bc71..b579ee0b86 100644
--- a/malloc/tst-mxfast.c
+++ b/malloc/tst-mxfast.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/>.  */
 
 /* This test verifies that setting the glibc.malloc.mxfast tunable to
    zero results in free'd blocks being returned to the small bins, not
diff --git a/malloc/tst-posix_memalign.c b/malloc/tst-posix_memalign.c
index fc46955c51..51913721cd 100644
--- a/malloc/tst-posix_memalign.c
+++ b/malloc/tst-posix_memalign.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 <stdlib.h>
diff --git a/malloc/tst-pvalloc.c b/malloc/tst-pvalloc.c
index c0356c0c71..b78ef6aa76 100644
--- a/malloc/tst-pvalloc.c
+++ b/malloc/tst-pvalloc.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 <malloc.h>
diff --git a/malloc/tst-realloc.c b/malloc/tst-realloc.c
index 5643c3ae16..0f08365c3c 100644
--- a/malloc/tst-realloc.c
+++ b/malloc/tst-realloc.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 <malloc.h>
diff --git a/malloc/tst-reallocarray.c b/malloc/tst-reallocarray.c
index fd50d4e36b..31e11c3b46 100644
--- a/malloc/tst-reallocarray.c
+++ b/malloc/tst-reallocarray.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 <malloc.h>
diff --git a/malloc/tst-scratch_buffer.c b/malloc/tst-scratch_buffer.c
index 2393a93250..f40b41ce70 100644
--- a/malloc/tst-scratch_buffer.c
+++ b/malloc/tst-scratch_buffer.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 <scratch_buffer.h>
 #include <stdbool.h>
diff --git a/malloc/tst-tcfree1.c b/malloc/tst-tcfree1.c
index 7bcfc97648..802c338641 100644
--- a/malloc/tst-tcfree1.c
+++ b/malloc/tst-tcfree1.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/malloc/tst-tcfree2.c b/malloc/tst-tcfree2.c
index f8408e4966..9fd6e101d3 100644
--- a/malloc/tst-tcfree2.c
+++ b/malloc/tst-tcfree2.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/malloc/tst-tcfree3.c b/malloc/tst-tcfree3.c
index 59456e9487..3ec55e42bf 100644
--- a/malloc/tst-tcfree3.c
+++ b/malloc/tst-tcfree3.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 <malloc.h>
 #include <string.h>
diff --git a/malloc/tst-valloc.c b/malloc/tst-valloc.c
index 1a1a2d2500..4f0e6215db 100644
--- a/malloc/tst-valloc.c
+++ b/malloc/tst-valloc.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 <stdlib.h>