commit:     9f1b7c9c46fefea550dcc3b1657573237cd77062
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 21 10:13:23 2021 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Oct 21 10:13:23 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=9f1b7c9c

switch to https:// URIs when possible

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 libsandbox/wrapper-funcs/__wrapper_exec.c | 2 +-
 src/options.c                             | 4 ++--
 src/sandbox.c                             | 2 +-
 tests/malloc_hooked_tst.c                 | 2 +-
 tests/script-1.sh                         | 2 +-
 tests/script-16.sh                        | 2 +-
 tests/script-2.sh                         | 2 +-
 tests/script-3.sh                         | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/libsandbox/wrapper-funcs/__wrapper_exec.c 
b/libsandbox/wrapper-funcs/__wrapper_exec.c
index 5174d2f..8ea5255 100644
--- a/libsandbox/wrapper-funcs/__wrapper_exec.c
+++ b/libsandbox/wrapper-funcs/__wrapper_exec.c
@@ -69,7 +69,7 @@ static bool sb_check_exec(const char *filename, char *const 
argv[])
                        run_in_process = false;
 
        /* We also need to ptrace programs that interpose their own allocator.
-        * http://crbug.com/586444
+        * https://crbug.com/586444
         */
        if (run_in_process) {
                static const char * const libc_alloc_syms[] = {

diff --git a/src/options.c b/src/options.c
index ad019b0..383b139 100644
--- a/src/options.c
+++ b/src/options.c
@@ -57,7 +57,7 @@ static void show_version(void)
                " version: " PACKAGE_VERSION "\n"
                " C lib:   " LIBC_VERSION " (" LIBC_PATH ")\n"
                " build:   " __DATE__ " " __TIME__ "\n"
-               " contact: " PACKAGE_BUGREPORT " via http://bugs.gentoo.org/\n";
+               " contact: " PACKAGE_BUGREPORT " via https://bugs.gentoo.org/\n";
                " rtld:    "
 #ifdef BROKEN_RTLD_NEXT
                        "next is broken ;(\n"
@@ -175,7 +175,7 @@ static void show_usage(int status)
                printf(" * %s\n", opts_help[i]);
        }
 
-       fprintf(fp, "\nContact: " PACKAGE_BUGREPORT " via 
http://bugs.gentoo.org/\n";);
+       fprintf(fp, "\nContact: " PACKAGE_BUGREPORT " via 
https://bugs.gentoo.org/\n";);
 
        exit(status);
 }

diff --git a/src/sandbox.c b/src/sandbox.c
index 503ad0b..7582dee 100644
--- a/src/sandbox.c
+++ b/src/sandbox.c
@@ -337,7 +337,7 @@ int main(int argc, char **argv)
                dputs(sandbox_footer);
 
        /* Do the right thing and pass the signal back up.  See:
-        * http://www.cons.org/cracauer/sigint.html
+        * https://www.cons.org/cracauer/sigint.html
         */
        if (stop_called != SIGUSR1 && WIFSIGNALED(shell_exit)) {
                int signum = WTERMSIG(shell_exit);

diff --git a/tests/malloc_hooked_tst.c b/tests/malloc_hooked_tst.c
index 18737fe..8d0922e 100644
--- a/tests/malloc_hooked_tst.c
+++ b/tests/malloc_hooked_tst.c
@@ -9,7 +9,7 @@
  *             libsandbox tries to initialize itself (since it never finished 
originally) ->
  *               libsandbox's malloc() ->
  *                 dlsym() -> deadlock
- * http://crbug.com/586444
+ * https://crbug.com/586444
  */
 
 #include "headers.h"

diff --git a/tests/script-1.sh b/tests/script-1.sh
index 8b18114..8eb46bf 100755
--- a/tests/script-1.sh
+++ b/tests/script-1.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-# http://bugs.gentoo.org/257418
+# https://bugs.gentoo.org/257418
 [ "${at_xfail}" = "yes" ] && exit 77 # see script-0
 (
 cd "${devfd}"

diff --git a/tests/script-16.sh b/tests/script-16.sh
index 1622694..73b7803 100755
--- a/tests/script-16.sh
+++ b/tests/script-16.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-# http://bugs.gentoo.org/139591
+# https://bugs.gentoo.org/139591
 [ "${at_xfail}" = "yes" ] && exit 77 # see script-0
 addwrite $PWD
 

diff --git a/tests/script-2.sh b/tests/script-2.sh
index ec10fa9..3c7d66e 100755
--- a/tests/script-2.sh
+++ b/tests/script-2.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-# http://bugs.gentoo.org/139591
+# https://bugs.gentoo.org/139591
 [ "${at_xfail}" = "yes" ] && exit 77 # see script-0
 addwrite $PWD
 

diff --git a/tests/script-3.sh b/tests/script-3.sh
index be7f7a3..60ca5ce 100755
--- a/tests/script-3.sh
+++ b/tests/script-3.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-# http://bugs.gentoo.org/260765
+# https://bugs.gentoo.org/260765
 [ "${at_xfail}" = "yes" ] && exit 77 # see script-0
 addwrite $PWD
 

Reply via email to