summaryrefslogtreecommitdiffstats
path: root/x11vnc/xevents.c
diff options
context:
space:
mode:
authorrunge <runge>2006-02-20 19:19:30 +0000
committerrunge <runge>2006-02-20 19:19:30 +0000
commit603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7 (patch)
tree582b98055d3f8edf42fff571a3443ff0dfaa1256 /x11vnc/xevents.c
parent4b8cc33e39e1d2f4eb459312659eff873a41e4db (diff)
downloadlibvncserver-603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7.zip
libvncserver-603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7.tar.gz
fix some non-gcc compiler warnings and signals in x11vnc
Diffstat (limited to 'x11vnc/xevents.c')
-rw-r--r--x11vnc/xevents.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/x11vnc/xevents.c b/x11vnc/xevents.c
index 5272333..e25a118 100644
--- a/x11vnc/xevents.c
+++ b/x11vnc/xevents.c
@@ -473,6 +473,11 @@ void spawn_grab_buster(void) {
fprintf(stderr, "spawn_grab_buster: could not fork\n");
rfbLogPerror("fork");
} else {
+ signal(SIGHUP, SIG_DFL);
+ signal(SIGINT, SIG_DFL);
+ signal(SIGQUIT, SIG_DFL);
+ signal(SIGTERM, SIG_DFL);
+
grab_buster_watch(parent, dstr);
exit(0);
}
OpenPOWER on IntegriCloud