From a06a685cbb3121397f9f8512030581aa0b3c9750 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 1 Nov 2023 03:43:14 +0000 Subject: [PATCH] whack more useless comments --- unix/unveil_openbsd.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/unix/unveil_openbsd.go b/unix/unveil_openbsd.go index c6c63b633..cb7e598ce 100644 --- a/unix/unveil_openbsd.go +++ b/unix/unveil_openbsd.go @@ -10,8 +10,6 @@ import "fmt" // For more information see unveil(2). // Note that the special case of blocking further // unveil calls is handled by UnveilBlock. -// -// Unveil requires OpenBSD 6.4 or later. func Unveil(path string, flags string) error { if err := supportsUnveil(); err != nil { return err @@ -29,8 +27,6 @@ func Unveil(path string, flags string) error { // UnveilBlock blocks future unveil calls. // For more information see unveil(2). -// -// Unveil requires OpenBSD 6.4 or later. func UnveilBlock() error { if err := supportsUnveil(); err != nil { return err