clipnotify

Notify on new X clipboard events
git clone https://git.sinitax.com/cdown/clipnotify
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 22f7cb09d0b99af0aae7109aaff73760ef2dd5e3
parent 36ee24aafb70f5d0aa9216139b929bfbd18a9f92
Author: Chris Down <chris@chrisdown.name>
Date:   Sat,  3 Nov 2018 19:56:29 +0000

Revert "Add MAYBE_PLEDGE for OpenBSD"

See discussion on https://github.com/cdown/clipmenu/issues/92.

This reverts commit eb156445572bad2eec7ac6f2dd7cd21d2eaaca6e.

Diffstat:
Mclipnotify.c | 11-----------
1 file changed, 0 insertions(+), 11 deletions(-)

diff --git a/clipnotify.c b/clipnotify.c @@ -4,23 +4,12 @@ #include <stdio.h> #include <stdlib.h> -#ifdef __OpenBSD__ -#define MAYBE_PLEDGE(p, ep) pledge(p, ep) -#else -#define MAYBE_PLEDGE(p, ep) 0 -#endif /* __OpenBSD__ */ - int main(void) { Display *disp; Window root; Atom clip; XEvent evt; - if (MAYBE_PLEDGE("stdio rpath", NULL) < 0) { - perror("pledge"); - exit(2); - } - disp = XOpenDisplay(NULL); if (!disp) { fprintf(stderr, "Can't open X display\n");