From 603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7 Mon Sep 17 00:00:00 2001 From: runge Date: Mon, 20 Feb 2006 19:19:30 +0000 Subject: fix some non-gcc compiler warnings and signals in x11vnc --- x11vnc/user.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'x11vnc/user.c') diff --git a/x11vnc/user.c b/x11vnc/user.c index 6d173ab..5269d50 100644 --- a/x11vnc/user.c +++ b/x11vnc/user.c @@ -557,6 +557,11 @@ static int try_user_and_display(uid_t uid, char *dpystr) { Display *dpy2 = NULL; int rc; + signal(SIGHUP, SIG_DFL); + signal(SIGINT, SIG_DFL); + signal(SIGQUIT, SIG_DFL); + signal(SIGTERM, SIG_DFL); + rc = switch_user_env(uid, name, home, 0); if (! rc) { exit(1); -- cgit v1.2.1