We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
man fzf
Crash on OpenBSD 7.4/current version on amd64 with -listen option:
-listen
$ fzf --version 0.43.0 $ fzf --listen Abort trap (core dumped)
In my kernel logs: fzf[9961]: pledge "inet", syscall 97
fzf[9961]: pledge "inet", syscall 97
According to OpenBSD protector code src/protector/protector_openbsd.go, syscall for inet is not defined to permit HTTP server on network.
src/protector/protector_openbsd.go
inet
I will submit a PR to fix this issue.
Thanks to @semarie for reporting this issue to me.
The text was updated successfully, but these errors were encountered:
Fix crash on OpenBSD with --listen
a01cc2c
- src/protector/protector_openbsd.go: add inet permissions for pledge - fix junegunn#3481 Signed-off-by: Laurent Cheylus <[email protected]>
Fix crash on OpenBSD with --listen (#3483)
d51b71e
- src/protector/protector_openbsd.go: add inet permissions for pledge - fix #3481 Signed-off-by: Laurent Cheylus <[email protected]>
Successfully merging a pull request may close this issue.
man fzf
)Info
Problem / Steps to reproduce
Crash on OpenBSD 7.4/current version on amd64 with
-listen
option:In my kernel logs:
fzf[9961]: pledge "inet", syscall 97
According to OpenBSD protector code
src/protector/protector_openbsd.go
, syscall forinet
is not defined to permit HTTP server on network.I will submit a PR to fix this issue.
Thanks to @semarie for reporting this issue to me.
The text was updated successfully, but these errors were encountered: