Skip to content
Snippets Groups Projects
Commit 5cdb6e86 authored by bobcanthelpyou's avatar bobcanthelpyou Committed by Andreas Ziegler
Browse files

package: update urls to https

parent 85494380
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ satisfy this are ...@@ -95,7 +95,7 @@ satisfy this are
14 9 3 7 17 3 14 9 3 7 17 3
Well, "9 15 3 18 27 15" didn't quite get 32 bits diffing Well, "9 15 3 18 27 15" didn't quite get 32 bits diffing
for "differ" defined as + with a one-bit base and a two-bit delta. I for "differ" defined as + with a one-bit base and a two-bit delta. I
used http://burtleburtle.net/bob/hash/avalanche.html to choose used https://burtleburtle.net/bob/hash/avalanche.html to choose
the operations, constants, and arrangements of the variables. the operations, constants, and arrangements of the variables.
This does not achieve avalanche. There are input bits of (a,b,c) This does not achieve avalanche. There are input bits of (a,b,c)
......
...@@ -634,7 +634,7 @@ static int fork_execvp_timeout(struct timespec *timeout, const char *file, const ...@@ -634,7 +634,7 @@ static int fork_execvp_timeout(struct timespec *timeout, const char *file, const
if (child == 0) { if (child == 0) {
sigprocmask(SIG_SETMASK, &oldsignals, NULL); sigprocmask(SIG_SETMASK, &oldsignals, NULL);
// casting discards const, but should be safe // casting discards const, but should be safe
// (see http://stackoverflow.com/q/36925388) // (see https://stackoverflow.com/q/36925388)
execvp(file, (char**) argv); execvp(file, (char**) argv);
fprintf(stderr, "can't execvp(\"%s\", ...): %s\n", file, strerror(errno)); fprintf(stderr, "can't execvp(\"%s\", ...): %s\n", file, strerror(errno));
_exit(1); _exit(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment