Switch URLs from http or git to https
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
diff --git a/COPYING b/COPYING
index d04b250..4704162 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files:
*
diff --git a/README b/README
index af221e6..d516db0 100644
--- a/README
+++ b/README
@@ -9,7 +9,7 @@ code over and over again on each project.
Releases
--------
- <http://libbsd.freedesktop.org/releases/>
+ <https://libbsd.freedesktop.org/releases/>
Mailing List
@@ -17,7 +17,7 @@ Mailing List
The subscription interface and web archives can be found at:
- <http://lists.freedesktop.org/mailman/listinfo/libbsd>
+ <https://lists.freedesktop.org/mailman/listinfo/libbsd>
The mail address is:
@@ -27,5 +27,10 @@ The mail address is:
Source Repository
-----------------
- <http://cgit.freedesktop.org/libbsd>
- <git://anongit.freedesktop.org/git/libbsd>
+The master repository can be browsed at:
+
+ <https://cgit.freedesktop.org/libbsd>
+
+and cloned from:
+
+ <https://anongit.freedesktop.org/git/libbsd>
diff --git a/src/libbsd-ctor.pc.in b/src/libbsd-ctor.pc.in
index 117b823..d183904 100644
--- a/src/libbsd-ctor.pc.in
+++ b/src/libbsd-ctor.pc.in
@@ -6,7 +6,7 @@ includedir=@includedir@
Name: libbsd-ctor
Description: Automatic constructor functions for libbsd
Version: @VERSION@
-URL: http://libbsd.freedesktop.org/
+URL: https://libbsd.freedesktop.org/
Cflags: -I${includedir}
Libs: -L${libdir} -Wl,-z,nodlopen -Wl,-u,libbsd_init_func -lbsd-ctor
Requires: libbsd
diff --git a/src/libbsd-overlay.pc.in b/src/libbsd-overlay.pc.in
index 2bbb1e2..ac8bf89 100644
--- a/src/libbsd-overlay.pc.in
+++ b/src/libbsd-overlay.pc.in
@@ -6,6 +6,6 @@ includedir=@includedir@
Name: libbsd
Description: Utility functions from BSD systems (overlay)
Version: @VERSION@
-URL: http://libbsd.freedesktop.org/
+URL: https://libbsd.freedesktop.org/
Libs: -L${libdir} -lbsd
Cflags: -isystem ${includedir}/bsd -DLIBBSD_OVERLAY
diff --git a/src/libbsd.pc.in b/src/libbsd.pc.in
index 9f97323..d141fea 100644
--- a/src/libbsd.pc.in
+++ b/src/libbsd.pc.in
@@ -6,6 +6,6 @@ includedir=@includedir@
Name: libbsd
Description: Utility functions from BSD systems
Version: @VERSION@
-URL: http://libbsd.freedesktop.org/
+URL: https://libbsd.freedesktop.org/
Libs: -L${libdir} -lbsd
Cflags: -I${includedir}
diff --git a/src/progname.c b/src/progname.c
index 9bc5e4b..10c3701 100644
--- a/src/progname.c
+++ b/src/progname.c
@@ -25,9 +25,10 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- Rejected in glibc (http://sourceware.org/ml/libc-alpha/2006-03/msg00125.html)
-*/
+/*
+ * Rejected in glibc
+ * <https://sourceware.org/ml/libc-alpha/2006-03/msg00125.html>.
+ */
#include <errno.h>
#include <string.h>
diff --git a/src/setproctitle.c b/src/setproctitle.c
index 11d8f7a..c18c61c 100644
--- a/src/setproctitle.c
+++ b/src/setproctitle.c
@@ -56,7 +56,7 @@ spt_min(size_t a, size_t b)
/*
* For discussion on the portability of the various methods, see
- * http://lists.freebsd.org/pipermail/freebsd-stable/2008-June/043136.html
+ * https://lists.freebsd.org/pipermail/freebsd-stable/2008-June/043136.html
*/
static int
spt_clearenv(void)