aboutsummaryrefslogtreecommitdiff
path: root/wctype
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 /wctype
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 'wctype')
-rw-r--r--wctype/Makefile2
-rw-r--r--wctype/bits/wctype-wchar.h2
-rw-r--r--wctype/iswctype.c2
-rw-r--r--wctype/iswctype_l.c2
-rw-r--r--wctype/test_wcfuncs.c2
-rw-r--r--wctype/test_wctype.c2
-rw-r--r--wctype/towctrans.c2
-rw-r--r--wctype/towctrans_l.c2
-rw-r--r--wctype/wcfuncs.c2
-rw-r--r--wctype/wcfuncs_l.c2
-rw-r--r--wctype/wchar-lookup.h2
-rw-r--r--wctype/wctrans.c2
-rw-r--r--wctype/wctrans_l.c2
-rw-r--r--wctype/wctype.c2
-rw-r--r--wctype/wctype.h2
-rw-r--r--wctype/wctype_l.c2
16 files changed, 16 insertions, 16 deletions
diff --git a/wctype/Makefile b/wctype/Makefile
index 405f84c..7c7c1e3 100644
--- a/wctype/Makefile
+++ b/wctype/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 wctype portion of the library.
diff --git a/wctype/bits/wctype-wchar.h b/wctype/bits/wctype-wchar.h
index 22ae0ab..7481f33 100644
--- a/wctype/bits/wctype-wchar.h
+++ b/wctype/bits/wctype-wchar.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.25
diff --git a/wctype/iswctype.c b/wctype/iswctype.c
index 236f87f..7627120 100644
--- a/wctype/iswctype.c
+++ b/wctype/iswctype.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 <ctype.h>
#include <wctype.h>
diff --git a/wctype/iswctype_l.c b/wctype/iswctype_l.c
index a31c6b7..bb9d13c 100644
--- a/wctype/iswctype_l.c
+++ b/wctype/iswctype_l.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 <ctype.h>
#include <wctype.h>
diff --git a/wctype/test_wcfuncs.c b/wctype/test_wcfuncs.c
index 078423b..48d0b0c 100644
--- a/wctype/test_wcfuncs.c
+++ b/wctype/test_wcfuncs.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 <stdio.h>
#include <stdlib.h>
diff --git a/wctype/test_wctype.c b/wctype/test_wctype.c
index d16800d..727c3c2 100644
--- a/wctype/test_wctype.c
+++ b/wctype/test_wctype.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 <ctype.h>
#include <stdio.h>
diff --git a/wctype/towctrans.c b/wctype/towctrans.c
index c194e63..a7f8eda 100644
--- a/wctype/towctrans.c
+++ b/wctype/towctrans.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 <wctype.h>
diff --git a/wctype/towctrans_l.c b/wctype/towctrans_l.c
index e28809a..f113af5 100644
--- a/wctype/towctrans_l.c
+++ b/wctype/towctrans_l.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 <wctype.h>
diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c
index 96a7e70..29ab75c 100644
--- a/wctype/wcfuncs.c
+++ b/wctype/wcfuncs.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 <ctype.h>
#include <wctype.h>
diff --git a/wctype/wcfuncs_l.c b/wctype/wcfuncs_l.c
index 4543d77..8982f01 100644
--- a/wctype/wcfuncs_l.c
+++ b/wctype/wcfuncs_l.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 <ctype.h>
#include <wctype.h>
diff --git a/wctype/wchar-lookup.h b/wctype/wchar-lookup.h
index ce257b0..a16e6ca 100644
--- a/wctype/wchar-lookup.h
+++ b/wctype/wchar-lookup.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 <stdint.h>
diff --git a/wctype/wctrans.c b/wctype/wctrans.c
index 25689ad..d0ab7d8 100644
--- a/wctype/wctrans.c
+++ b/wctype/wctrans.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 <inttypes.h>
#include <string.h>
diff --git a/wctype/wctrans_l.c b/wctype/wctrans_l.c
index 162d8f7..c840892 100644
--- a/wctype/wctrans_l.c
+++ b/wctype/wctrans_l.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 <locale.h>
#include <string.h>
diff --git a/wctype/wctype.c b/wctype/wctype.c
index 832fbf8..6e19086 100644
--- a/wctype/wctype.c
+++ b/wctype/wctype.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 <endian.h>
#include <string.h>
diff --git a/wctype/wctype.h b/wctype/wctype.h
index 7b1d556..52b2834 100644
--- a/wctype/wctype.h
+++ b/wctype/wctype.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.25
diff --git a/wctype/wctype_l.c b/wctype/wctype_l.c
index b61350a..9afe058 100644
--- a/wctype/wctype_l.c
+++ b/wctype/wctype_l.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 <endian.h>
#include <locale.h>