diff options
author | Andinus <andinus@nand.sh> | 2020-04-15 19:14:16 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-15 19:14:16 +0530 |
commit | f479b82ff8aa13b953590a13d31de93de8e53ec2 (patch) | |
tree | e3ffd68efa406b1e407b272545114acde7302b50 | |
parent | af0996babf510f005a05a16f5d43ca8884f33031 (diff) | |
download | lynx-f479b82ff8aa13b953590a13d31de93de8e53ec2.tar.gz |
Support pledge & unveil, change scope of project
-rw-r--r-- | README.org | 4 | ||||
-rw-r--r-- | paths.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/README.org b/README.org index b439a38..4cfe1f4 100644 --- a/README.org +++ b/README.org @@ -5,8 +5,8 @@ #+TOC: headlines 2 #+TITLE: Lynx -Lynx is a simple /unveil/ wrapper. It returns /nil/ on unsupported systems, -currently only /OpenBSD/ supports /unveil/. +Lynx is a simple /unveil/ & /pledge/ wrapper. It returns /nil/ on unsupported systems, +currently only /OpenBSD/ is supported. | Project Home | [[https://andinus.nand.sh/lynx][Lynx]] | | Source Code | [[https://tildegit.org/andinus/lynx][Andinus / Lynx]] | diff --git a/paths.go b/paths.go index 589cca5..55bc5f8 100644 --- a/paths.go +++ b/paths.go @@ -1,6 +1,6 @@ // +build openbsd -// Package lynx is a simple wrapper to unveil. +// Package lynx is a simple unveil & pledge wrapper. package lynx import "golang.org/x/sys/unix" |