Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
H
HardenedBSD-pkg
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
10440
Issues
Patches
Jobs
Commits
›
ac6fa03b31045f8799fa63a7d2aa1050b98bd49b
libpkg/utils.c: use _exit() instead of exit()
rilysh
committed
2 years ago
commit ac6fa03b31045f8799fa63a7d2aa1050b98bd49b
parent
b83275497ca6f8c39e1c662a40e6c7f1bcfde89c
1 file changed
+1
-1
modified
libpkg/utils.c
@@ -491,7 +491,7 @@ process_spawn_pipe(FILE *inout[2], const char *command)
execve(_PATH_BSHELL, argv, environ);
-
exit(127);
+
_exit(127);
}
return (-1); /* ? */