about summary refs log tree commit diff
path: root/sysvipc
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 /sysvipc
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 'sysvipc')
-rw-r--r--sysvipc/Makefile2
-rw-r--r--sysvipc/ftok.c2
-rw-r--r--sysvipc/msgctl.c2
-rw-r--r--sysvipc/msgget.c2
-rw-r--r--sysvipc/msgrcv.c2
-rw-r--r--sysvipc/msgsnd.c2
-rw-r--r--sysvipc/semctl.c2
-rw-r--r--sysvipc/semget.c2
-rw-r--r--sysvipc/semop.c2
-rw-r--r--sysvipc/semtimedop.c2
-rw-r--r--sysvipc/shmat.c2
-rw-r--r--sysvipc/shmctl.c2
-rw-r--r--sysvipc/shmdt.c2
-rw-r--r--sysvipc/shmget.c2
-rw-r--r--sysvipc/sys/ipc.h2
-rw-r--r--sysvipc/sys/msg.h2
-rw-r--r--sysvipc/sys/sem.h2
-rw-r--r--sysvipc/sys/shm.h2
-rw-r--r--sysvipc/test-sysvmsg.c2
-rw-r--r--sysvipc/test-sysvsem.c2
-rw-r--r--sysvipc/test-sysvshm.c2
21 files changed, 21 insertions, 21 deletions
diff --git a/sysvipc/Makefile b/sysvipc/Makefile
index c62c1adf7e..fa1db22010 100644
--- a/sysvipc/Makefile
+++ b/sysvipc/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/>.
 
 #
 #	Sub-makefile for sysvipc portion of the library.
diff --git a/sysvipc/ftok.c b/sysvipc/ftok.c
index e7c98ac29e..ae9682fd0f 100644
--- a/sysvipc/ftok.c
+++ b/sysvipc/ftok.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 <sys/ipc.h>
 #include <sys/stat.h>
diff --git a/sysvipc/msgctl.c b/sysvipc/msgctl.c
index bb5025996b..7d803ea37b 100644
--- a/sysvipc/msgctl.c
+++ b/sysvipc/msgctl.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 <sys/msg.h>
 #include <errno.h>
diff --git a/sysvipc/msgget.c b/sysvipc/msgget.c
index e214454bf4..4edd424436 100644
--- a/sysvipc/msgget.c
+++ b/sysvipc/msgget.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 <sys/msg.h>
 #include <errno.h>
diff --git a/sysvipc/msgrcv.c b/sysvipc/msgrcv.c
index c717430d28..3b727890f4 100644
--- a/sysvipc/msgrcv.c
+++ b/sysvipc/msgrcv.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 <sys/msg.h>
 #include <errno.h>
diff --git a/sysvipc/msgsnd.c b/sysvipc/msgsnd.c
index d1afce42e0..43051ace12 100644
--- a/sysvipc/msgsnd.c
+++ b/sysvipc/msgsnd.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 <sys/msg.h>
 #include <errno.h>
diff --git a/sysvipc/semctl.c b/sysvipc/semctl.c
index d0e9f2bf79..cee6be58de 100644
--- a/sysvipc/semctl.c
+++ b/sysvipc/semctl.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 <sys/sem.h>
 #include <errno.h>
diff --git a/sysvipc/semget.c b/sysvipc/semget.c
index 7e07d00db8..707798b47a 100644
--- a/sysvipc/semget.c
+++ b/sysvipc/semget.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 <sys/sem.h>
 #include <errno.h>
diff --git a/sysvipc/semop.c b/sysvipc/semop.c
index 95565fa347..580cc14653 100644
--- a/sysvipc/semop.c
+++ b/sysvipc/semop.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 <sys/sem.h>
 #include <errno.h>
diff --git a/sysvipc/semtimedop.c b/sysvipc/semtimedop.c
index d4d6fec5ac..5ca4d47ee3 100644
--- a/sysvipc/semtimedop.c
+++ b/sysvipc/semtimedop.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 <sys/sem.h>
 #include <errno.h>
diff --git a/sysvipc/shmat.c b/sysvipc/shmat.c
index 5b8b1f2886..54560e9f56 100644
--- a/sysvipc/shmat.c
+++ b/sysvipc/shmat.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 <sys/shm.h>
 #include <errno.h>
diff --git a/sysvipc/shmctl.c b/sysvipc/shmctl.c
index 04328d9a10..913d536455 100644
--- a/sysvipc/shmctl.c
+++ b/sysvipc/shmctl.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 <sys/shm.h>
 #include <errno.h>
diff --git a/sysvipc/shmdt.c b/sysvipc/shmdt.c
index 4c58373d3c..9f9684d1de 100644
--- a/sysvipc/shmdt.c
+++ b/sysvipc/shmdt.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 <sys/shm.h>
 #include <errno.h>
diff --git a/sysvipc/shmget.c b/sysvipc/shmget.c
index 1fa5c7cb37..c4252aa809 100644
--- a/sysvipc/shmget.c
+++ b/sysvipc/shmget.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 <sys/shm.h>
 #include <errno.h>
diff --git a/sysvipc/sys/ipc.h b/sysvipc/sys/ipc.h
index 516e275d49..6400fe3c35 100644
--- a/sysvipc/sys/ipc.h
+++ b/sysvipc/sys/ipc.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 _SYS_IPC_H
 #define _SYS_IPC_H	1
diff --git a/sysvipc/sys/msg.h b/sysvipc/sys/msg.h
index 1ce4672cc1..aee73bbe83 100644
--- a/sysvipc/sys/msg.h
+++ b/sysvipc/sys/msg.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 _SYS_MSG_H
 #define _SYS_MSG_H
diff --git a/sysvipc/sys/sem.h b/sysvipc/sys/sem.h
index ea9b66e1ee..f90409f845 100644
--- a/sysvipc/sys/sem.h
+++ b/sysvipc/sys/sem.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 _SYS_SEM_H
 #define _SYS_SEM_H	1
diff --git a/sysvipc/sys/shm.h b/sysvipc/sys/shm.h
index c15f419f09..b43d60f778 100644
--- a/sysvipc/sys/shm.h
+++ b/sysvipc/sys/shm.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 _SYS_SHM_H
 #define _SYS_SHM_H	1
diff --git a/sysvipc/test-sysvmsg.c b/sysvipc/test-sysvmsg.c
index 9b30f1bce3..8a43d34fcb 100644
--- a/sysvipc/test-sysvmsg.c
+++ b/sysvipc/test-sysvmsg.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 <stdio.h>
 #include <stdlib.h>
diff --git a/sysvipc/test-sysvsem.c b/sysvipc/test-sysvsem.c
index 02fa9e99dd..da1992482b 100644
--- a/sysvipc/test-sysvsem.c
+++ b/sysvipc/test-sysvsem.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 <stdio.h>
 #include <stdlib.h>
diff --git a/sysvipc/test-sysvshm.c b/sysvipc/test-sysvshm.c
index 10d1c6c200..c7c25d24de 100644
--- a/sysvipc/test-sysvshm.c
+++ b/sysvipc/test-sysvshm.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 <stdio.h>
 #include <stdlib.h>