tPledge on OpenBSD - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f40f86fa873bc4acccdf3d929aa0f786993ae31d
 (DIR) parent c3a2e016bb65c00bd44b6461b1b1bbaa61f20093
 (HTM) Author: Klemens Nanni <kn@openbsd.org>
       Date:   Fri, 25 May 2018 07:56:27 +0200
       
       Pledge on OpenBSD
       
       Diffstat:
         M dwm.c                               |       4 ++++
       
       1 file changed, 4 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -2137,6 +2137,10 @@ main(int argc, char *argv[])
                        die("dwm: cannot open display");
                checkotherwm();
                setup();
       +#ifdef __OpenBSD__
       +        if (pledge("stdio proc exec", NULL) == -1)
       +                die("pledge");
       +#endif /* __OpenBSD__ */
                scan();
                run();
                cleanup();