aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-10-21 06:13:23 -0400
committerMike Frysinger <vapier@gentoo.org>2021-10-21 06:13:23 -0400
commit9f1b7c9c46fefea550dcc3b1657573237cd77062 (patch)
treea2d10fc6e3ce78c8390f0da9a51fea70a9d1b767 /src
parentbuild: create libsandbox dir before writing files (diff)
downloadsandbox-9f1b7c9c46fefea550dcc3b1657573237cd77062.tar.gz
sandbox-9f1b7c9c46fefea550dcc3b1657573237cd77062.tar.bz2
sandbox-9f1b7c9c46fefea550dcc3b1657573237cd77062.zip
switch to https:// URIs when possible
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r--src/options.c4
-rw-r--r--src/sandbox.c2
2 files changed, 3 insertions, 3 deletions
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);