summary refs log tree commit diff stats
path: root/commands_other.go
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-04-15 00:24:55 +0530
committerAndinus <andinus@nand.sh>2020-04-15 00:24:55 +0530
commita129334aefa559e36783347c5243303a6dd8b104 (patch)
treedfd3964ccf879037b14a7a917641963b45e123b9 /commands_other.go
parent0dfcf8cb81daa80aa751a5a40c243e64ee030929 (diff)
downloadlynx-a129334aefa559e36783347c5243303a6dd8b104.tar.gz
Compile for non OpenBSD systems
Previously the compilation would fail for non OpenBSD systems & the
user had to manage it themselves. Now it compiles on non OpenBSD
systems but returns nil immediately because unveil isn't supported on
those systems.
Diffstat (limited to 'commands_other.go')
-rw-r--r--commands_other.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/commands_other.go b/commands_other.go
new file mode 100644
index 0000000..794d18b
--- /dev/null
+++ b/commands_other.go
@@ -0,0 +1,9 @@
+// +build !openbsd
+
+package lynx
+
+// UnveilCommands takes a slice of commands & unveils them one by one,
+// it does nothing on non OpenBSD systems.
+func UnveilCommands(_ []string) error {
+	return nil
+}